<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>DLL Feed - Programmer's Heaven</title>
    <link>http://www.programmersheaven.com/feed/Tag/1395/RSS.aspx</link>
    <description>Events at Programmer's Heaven related to DLL.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 25 May 2013 16:25:55 -0700</pubDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <item>
      <title>Raycasting Library V4.1</title>
      <link>http://www.programmersheaven.com/download/37078/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/Bithandler/"&gt;Bithandler&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/37078/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;C/C++ Raycaster Library V4.1 with floor, ceiling, wall and sprite rendering. The Lib does not contain API- calls. Go to the homepage to see some games made with this library and to download c++ sample code. 
To use the lib in your projects you need 4 codes to pass to a function in order to unlock it. Just send me an email to get them.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/37078/download.aspx</guid>
      <pubDate>Sat, 11 Feb 2012 02:59:58 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Mon, 02 Jan 2012 02:13:51 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sat, 12 Nov 2011 05:29:41 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 12 Apr 2011 10:47:35 -0700</pubDate>
    </item>
    <item>
      <title>problem with getprocaddress in service</title>
      <link>http://www.programmersheaven.com/mb/windows/422673/422673/ReadMessage.aspx#422673</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/vv40in/"&gt;vv40in&lt;/a&gt; posted a &lt;a href="http://www.programmersheaven.com/mb/windows/422673/422673/ReadMessage.aspx#422673"&gt;new message&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/windows/Board.aspx"&gt;Windows programming&lt;/a&gt; forum.&lt;/p&gt;Hello!&lt;br /&gt;
For example, i have a little function in dll:&lt;br /&gt;
void dll_func(){&lt;br /&gt;
  char buf[32];&lt;br /&gt;
  char* p = "qwerty";&lt;br /&gt;
  strcpy(buf,p);&lt;br /&gt;
  // or&lt;br /&gt;
  GetLastError(); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
I call GetProcAddress("dll_func") and call got function.&lt;br /&gt;
If it happened in nonservice application, then dll_func works OK.&lt;br /&gt;
But if service calls dll_func, then it get access violation in strcpy.&lt;br /&gt;
In service debug window I see that [p = "qwerty";] - is unreadable pointer.&lt;br /&gt;
The same if dll_func contains only GetLastError() call - it get access violation.&lt;br /&gt;
I suspect that dll data segment was loaded incorrectly or did not loaded at all when dll was loaded fom service.&lt;br /&gt;
Anybody, could you help me!&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/windows/422673/422673/ReadMessage.aspx#422673</guid>
      <pubDate>Wed, 23 Mar 2011 02:27:11 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sat, 26 Feb 2011 06:28:51 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 15 Feb 2011 14:12:36 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sun, 30 Jan 2011 14:56:25 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 07 Dec 2010 12:39:57 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 07 Dec 2010 12:37:53 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI/Unicode text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 07 Dec 2010 11:02:46 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Mon, 20 Sep 2010 12:19:42 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sat, 07 Aug 2010 04:29:08 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sat, 07 Aug 2010 04:22:41 -0700</pubDate>
    </item>
    <item>
      <title>25 DLL/Middleware exam/interview questions-answers for developers/learners!!</title>
      <link>http://www.programmersheaven.com/download/56374/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/karshant/"&gt;karshant&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/56374/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;25 DLL/Middleware exam/interview questions-answers for developers/learners!!

Topics includes: 
DLL usage, DLL advantages, sections, mechanism of a DLL, DLL path, loader, linker
dependency chain, types of linking, DLL entry point,
static, implicit, explicit linking,
import, export,
export a function,
extern C, name mangling, 
AFX Extension,
resource DLL,
Linux calls like dlopen, dlsym, dlclose etc.

Link: http://www.mybestnotes.co.in/dll_questions.php</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/56374/download.aspx</guid>
      <pubDate>Fri, 26 Mar 2010 08:27:39 -0700</pubDate>
    </item>
    <item>
      <title>25 DLL/Middleware exam/interview questions-answers for developers/learners!!</title>
      <link>http://www.programmersheaven.com/user/karshant/blog/4826-25-DLLMiddleware-examinterview-questions-answers-for-developerslearners/</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/karshant/"&gt;karshant&lt;/a&gt; wrote a &lt;a href="http://www.programmersheaven.com/user/karshant/blog/4826-25-DLLMiddleware-examinterview-questions-answers-for-developerslearners/"&gt;new blog post&lt;/a&gt; in their &lt;a href="http://www.programmersheaven.com/user/karshant/blog/"&gt;blog&lt;/a&gt;.&lt;/p&gt;Topics includes: &lt;br /&gt;
DLL usage, DLL advantages, sections, mechanism of a DLL, DLL path, loader, linker&lt;br /&gt;
dependency chain, types of linking, DLL entry point,&lt;br /&gt;
static, implicit, explicit linking,&lt;br /&gt;
import, export,&lt;br /&gt;
export a function,&lt;br /&gt;
extern C, name mangling, &lt;br /&gt;
AFX Extension,&lt;br /&gt;
resource DLL,&lt;br /&gt;
Linux calls like dlopen, dlsym, dlclose etc.&lt;br /&gt;
&lt;br /&gt;
Link: &lt;a href="http://www.mybestnotes.co.in/dll_questions.php"&gt;DLL questions-answers&lt;/a&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/user/karshant/blog/4826-25-DLLMiddleware-examinterview-questions-answers-for-developerslearners/</guid>
      <pubDate>Tue, 23 Mar 2010 02:30:12 -0700</pubDate>
    </item>
    <item>
      <title>25 DLL/Middleware exam/interview questions-answers for developers/learners!!</title>
      <link>http://www.programmersheaven.com/download/56374/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/karshant/"&gt;karshant&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/56374/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;25 DLL/Middleware exam/interview questions-answers for developers/learners!!

Topics includes: 
DLL usage, DLL advantages, sections, mechanism of a DLL, DLL path, loader, linker
dependency chain, types of linking, DLL entry point,
static, implicit, explicit linking,
import, export,
export a function,
extern C, name mangling, 
AFX Extension,
resource DLL,
Linux calls like dlopen, dlsym, dlclose etc.

Link: http://www.mybestnotes.co.in/dll_questions.php</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/56374/download.aspx</guid>
      <pubDate>Mon, 22 Mar 2010 22:38:08 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Wed, 17 Mar 2010 12:12:56 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Mon, 01 Mar 2010 10:36:19 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sun, 28 Feb 2010 14:42:17 -0700</pubDate>
    </item>
    <item>
      <title>RSEdit.dll: A complete ANSI text editor (GoAsm)</title>
      <link>http://www.programmersheaven.com/download/52642/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/52642/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 1.02.0.0008 for GoAsm. A complete ANSI text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/52642/download.aspx</guid>
      <pubDate>Sun, 28 Feb 2010 06:45:31 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sun, 28 Feb 2010 06:40:38 -0700</pubDate>
    </item>
    <item>
      <title>RSEdit.dll: A complete ANSI text editor (GoAsm)</title>
      <link>http://www.programmersheaven.com/download/52642/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/52642/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 1.02.0.0008 for GoAsm. A complete ANSI text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/52642/download.aspx</guid>
      <pubDate>Sun, 28 Feb 2010 06:38:10 -0700</pubDate>
    </item>
    <item>
      <title>My Best Notes</title>
      <link>http://www.programmersheaven.com/link/15284-Good+collection+of+questions+on+C,+C++,+C+++under+Windows,+MFC,+DLL,+COM/DOM/info.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/karshant/"&gt;karshant&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/link/15284-Good+collection+of+questions+on+C%2c+C%2b%2b%2c+C%2b%2b+under+Windows%2c+MFC%2c+DLL%2c+COM%2fDOM/info.aspx"&gt;link&lt;/a&gt;.&lt;/p&gt;Good collection of questions on C, C++, Win32 Programming, MFC, DLL, COM/DOM for interview and exam preparation.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/link/15284-Good+collection+of+questions+on+C%2c+C%2b%2b%2c+C%2b%2b+under+Windows%2c+MFC%2c+DLL%2c+COM%2fDOM/info.aspx</guid>
      <pubDate>Mon, 15 Feb 2010 19:20:59 -0700</pubDate>
    </item>
    <item>
      <title>My Best Notes</title>
      <link>http://www.programmersheaven.com/link/15284-Good+collection+of+questions+on+C,+C++,+C+++under+Windows,+MFC,+DLL,+COM/DOM/info.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/karshant/"&gt;karshant&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/link/15284-Good+collection+of+questions+on+C%2c+C%2b%2b%2c+C%2b%2b+under+Windows%2c+MFC%2c+DLL%2c+COM%2fDOM/info.aspx"&gt;link&lt;/a&gt;.&lt;/p&gt;Good collection of questions on C, C++, Win32 Programming, MFC, DLL, COM/DOM for interview and exam preparation.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/link/15284-Good+collection+of+questions+on+C%2c+C%2b%2b%2c+C%2b%2b+under+Windows%2c+MFC%2c+DLL%2c+COM%2fDOM/info.aspx</guid>
      <pubDate>Mon, 15 Feb 2010 19:20:09 -0700</pubDate>
    </item>
    <item>
      <title>DLL (Dynamic Link Library) File Information Center</title>
      <link>http://www.programmersheaven.com/link/15187-DLL+(Dynamic+Link+Library)+File+Information+Center/info.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/karl_vi/"&gt;karl_vi&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/link/15187-DLL+(Dynamic+Link+Library)+File+Information+Center/info.aspx"&gt;link&lt;/a&gt;.&lt;/p&gt;If you are running a Windows application and receiving a 1157 (ERROR_DLL_NOT_FOUND) error, or &amp;quot;LoadLibrary(&amp;quot;xxx.dll&amp;quot;) failed - The specified module could not be found&amp;quot; message, it is most likely that your application requires a DLL file that is not available on your Windows system. How can you find more information about the required DLL file? And where you should go to download the required DLL file?


dll.fyicenter.com provides you detailed information on many commonly used DLL files. You can use the search function to find more information like date, size, and dependencies for a given DLL file. dll.fyicenter.com also provides you information on how to download DLL each file.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/link/15187-DLL+(Dynamic+Link+Library)+File+Information+Center/info.aspx</guid>
      <pubDate>Sat, 09 Jan 2010 19:38:42 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Thu, 31 Dec 2009 11:46:03 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 29 Dec 2009 13:32:40 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Thu, 24 Dec 2009 13:09:30 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Mon, 21 Dec 2009 12:16:47 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sun, 20 Dec 2009 14:40:17 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sun, 20 Dec 2009 07:35:50 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Thu, 17 Dec 2009 13:00:00 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sat, 05 Dec 2009 03:36:43 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Sun, 22 Nov 2009 14:20:52 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Mon, 09 Nov 2009 02:43:56 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Mon, 09 Nov 2009 02:42:27 -0700</pubDate>
    </item>
    <item>
      <title>RSEditor.dll: A complete line-based ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 27 Oct 2009 15:22:46 -0700</pubDate>
    </item>
    <item>
      <title>RSEdit.dll: A complete ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/52642/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/52642/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 1.02.0.0008 for GoAsm. A complete ANSI text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/52642/download.aspx</guid>
      <pubDate>Tue, 27 Oct 2009 14:06:41 -0700</pubDate>
    </item>
    <item>
      <title>RSEdit.dll: A complete ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 27 Oct 2009 14:06:07 -0700</pubDate>
    </item>
    <item>
      <title>RSEdit.dll: A complete ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/27599/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/27599/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 2.00.0.0021. A complete line-based ANSI/Unicode text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/27599/download.aspx</guid>
      <pubDate>Tue, 27 Oct 2009 13:59:45 -0700</pubDate>
    </item>
    <item>
      <title>RSEdit.dll: A complete ANSI text editor</title>
      <link>http://www.programmersheaven.com/download/52642/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/elprogramari/"&gt;elprogramari&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/52642/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;Version 1.02.0.0008 for GoAsm. A complete ANSI text editor in a dll file with full and open source code. Programmed entirely in Assembler for Win32 with Easy Code (Easy Code is a real visual assembler IDE available for free). The editor has all functions (copy, paste, search, replace). Ideal for syntax highlighting editors, notepads, etc. You will get surprised about its speed.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/52642/download.aspx</guid>
      <pubDate>Tue, 27 Oct 2009 13:59:13 -0700</pubDate>
    </item>
    <item>
      <title>Re: Can't Find Entry Point while using self-created VB DLL</title>
      <link>http://www.programmersheaven.com/mb/VBasic/378227/403077/ReadMessage.aspx#403077</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/BitByBit_Thor/"&gt;BitByBit_Thor&lt;/a&gt; posted a &lt;a href="http://www.programmersheaven.com/mb/VBasic/378227/403077/ReadMessage.aspx#403077"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/VBasic/Board.aspx"&gt;Visual Basic&lt;/a&gt; forum.&lt;/p&gt;: That is Correct. I do suggest a Com+ rather then API declaration, &lt;br /&gt;
: since most of the time using this regimen demand the dll to be &lt;br /&gt;
: pre-registered anyway, such as OCXs and DLLs in the /System32 &lt;br /&gt;
: Folder. &lt;br /&gt;
&lt;br /&gt;
The point is that you don't have a choice in what type of dll you are creating in VB. If you want to export functionality through VB, the only choice you have is to use COM.&lt;br /&gt;
Of course you could create the dll in C++ and then use it in VB, but that's not what we're talking about here.&lt;br /&gt;
&lt;br /&gt;
: Notice that regarding external Lib. files (any) IN VB6 (!)- &lt;br /&gt;
: this declaration is obsolete since the allocation of VBO Lib. does &lt;br /&gt;
: not always finds the Entry Point in Exported functions, Problem that &lt;br /&gt;
: does not exist in COM type libraries, which has the default File &lt;br /&gt;
: Offset in Win32 SubSystem, that WILL scan Entry Point (+File &lt;br /&gt;
: Offset..until the EP Section) and will "auto" (: find all the &lt;br /&gt;
: methods.&lt;br /&gt;
&lt;br /&gt;
Not sure I understand what you mean by the first part here.&lt;br /&gt;
&lt;br /&gt;
: &lt;br /&gt;
: Since the following explanation, might be a little "over the head", &lt;br /&gt;
: I will be happy to interpret any hard points..&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: In any case, I do not accept your first asseveration, about you did &lt;br /&gt;
: mention the same recommendation.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
It's quite the same, really. Your wording in blue, and mine in green. You'll notice that, whereas I was definitely more succinct in my description, we suggest the same. &lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Blue;"&gt;: &lt;br /&gt;
: how to fix your dll:&lt;br /&gt;
: (how to build a proper vb6 dll).&lt;br /&gt;
: &lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Green;"&gt;: In VB it's only possible to write COM DLL's, which means that you &lt;br /&gt;
: always need to work with classes.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Blue;"&gt;:&lt;br /&gt;
: finish your stuff making sure you have made the function/sub needed &lt;br /&gt;
: to be used as PUBLIC  (!)&lt;br /&gt;
: &lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Green;"&gt;: What you want to do is add a Class, call it something like Globals,&lt;br /&gt;
: and set it's Instancing to Global Multi-use.&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Blue;"&gt;: &lt;br /&gt;
: add reference-&amp;gt;browse your dll-&amp;gt;press ok.&lt;br /&gt;
: &lt;br /&gt;
: in your project (say your class inside the dll called myclass1),&lt;br /&gt;
: write anywhere:&lt;br /&gt;
: &lt;br /&gt;
: dim mc as myclass1&lt;br /&gt;
: set mc = New myclass1&lt;br /&gt;
: &lt;br /&gt;
: you can use it like this:&lt;br /&gt;
: mc.funcABC "hello"&lt;br /&gt;
: &lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: Green;"&gt;: Then add a reference to the DLL in your other project and then you&lt;br /&gt;
: can use your function Test without having to use Declare.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
What I see here is that we pretty much say the same thing, less the part about cmd/regsvr32, and considering the fact that I was sketching the general picture where you went into detail.&lt;br /&gt;
&lt;br /&gt;
Best Regards,&lt;br /&gt;
Richard&lt;br /&gt;
&lt;br /&gt;
The way I see it... Well, it's all pretty blurry</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/378227/403077/ReadMessage.aspx#403077</guid>
      <pubDate>Thu, 08 Oct 2009 15:47:16 -0700</pubDate>
    </item>
    <item>
      <title>Re: Can't Find Entry Point while using self-created VB DLL</title>
      <link>http://www.programmersheaven.com/mb/VBasic/378227/402709/ReadMessage.aspx#402709</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/eladkarako/"&gt;eladkarako&lt;/a&gt; posted a &lt;a href="http://www.programmersheaven.com/mb/VBasic/378227/402709/ReadMessage.aspx#402709"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/VBasic/Board.aspx"&gt;Visual Basic&lt;/a&gt; forum.&lt;/p&gt;- the aforementioned reply is incorrect. -&lt;br /&gt;
&lt;br /&gt;
how to fix your dll:&lt;br /&gt;
(how to build a proper vb6 dll).&lt;br /&gt;
&lt;br /&gt;
start new project of vb dll, add reference to "COM+ Services Type Library".&lt;br /&gt;
&lt;br /&gt;
finish your stuff making sure you have made the function/sub needed to be used as PUBLIC  (!)&lt;br /&gt;
&lt;br /&gt;
save the project, create a dll.&lt;br /&gt;
quit.&lt;br /&gt;
&lt;br /&gt;
open a CMD console (windows xp's "dos") and browse to the folder of the dll-project. say your project's name(or dll name) is mylib123.dll.&lt;br /&gt;
run this command:&lt;br /&gt;
regsvr32 mylib123.dll&lt;br /&gt;
&lt;br /&gt;
you will get a note that the dll has been registered successfully.&lt;br /&gt;
&lt;br /&gt;
open a new project (regular exe that will use the functions/subs from the dll).&lt;br /&gt;
&lt;br /&gt;
add reference-&amp;gt;browse your dll-&amp;gt;press ok.&lt;br /&gt;
&lt;br /&gt;
in your project (say your class inside the dll called myclass1),&lt;br /&gt;
write anywhere:&lt;br /&gt;
&lt;br /&gt;
dim mc as myclass1&lt;br /&gt;
set mc = New myclass1&lt;br /&gt;
&lt;br /&gt;
now you can use ANY functions &lt;br /&gt;
(say you have a public function called funcABC that look like that:&lt;br /&gt;
Public Function funcABC (byref s as String) AS String   ).&lt;br /&gt;
&lt;br /&gt;
you can use it like this:&lt;br /&gt;
mc.funcABC "hello"&lt;br /&gt;
&lt;br /&gt;
..or to get the function's output:&lt;br /&gt;
msgbox mc.funcABC("world")&lt;br /&gt;
&lt;br /&gt;
after you've finished, if you've got inner functions in the dll to clean stuff up, then run it, and also run:&lt;br /&gt;
Set ms = Nothing&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
why this is working:&lt;br /&gt;
the command you've write down in the CMD is registering the dll using windows's registry (this is the proper way to use dll!). this way you can place the dll in long path location, which involve different letters (not necessarily in english) and it will be fine.&lt;br /&gt;
&lt;br /&gt;
you can download many examples if you search "how to vb6 dll" in google, or PlanetSourceCode website.&lt;br /&gt;
&lt;br /&gt;
respectfully,&lt;br /&gt;
Elad Karako ,&lt;br /&gt;
Israel.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBasic/378227/402709/ReadMessage.aspx#402709</guid>
      <pubDate>Thu, 08 Oct 2009 05:00:06 -0700</pubDate>
    </item>
    <item>
      <title>csFTPQuick</title>
      <link>http://www.programmersheaven.com/download/56211/download.aspx</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/chesty73/"&gt;chesty73&lt;/a&gt; submitted a new &lt;a href="http://www.programmersheaven.com/download/56211/download.aspx"&gt;file&lt;/a&gt;.&lt;/p&gt;ASP component to transfer files between servers using FTP. Simple command set to upload and download single files, lists of files or complete folders with subfolders. Free trial available with full instructions.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/download/56211/download.aspx</guid>
      <pubDate>Thu, 27 Aug 2009 05:58:43 -0700</pubDate>
    </item>
    <item>
      <title>Problem while code integration in Visual C++ .net framework.</title>
      <link>http://www.programmersheaven.com/mb/vcpage/394581/394581/ReadMessage.aspx#394581</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/nnhamane/"&gt;nnhamane&lt;/a&gt; posted a &lt;a href="http://www.programmersheaven.com/mb/vcpage/394581/394581/ReadMessage.aspx#394581"&gt;new message&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/vcpage/Board.aspx"&gt;Visual C++&lt;/a&gt; forum.&lt;/p&gt;Hi friends, there is a project which contains more than 10 small projects. These projects contains their respective exe's. Each project has some dlls to perform particular operation. Each dll is build by linking with either header1 or header2. My task is to integrate them in one project and make one exe i.e. code integration. I have almost finished it. When I run the project then it is giving error as "Attempted to read or write protected memory. This is often an indication that other memory is corrupt" for those projects whose dlls are linked with header2 and its fine working for those projects whose dlls are linked with header1. I have linked the new project with each and every dll required for operation. No errors while compilation. But it's giving an error while performing operations. Do you have any solution for my problem?&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/vcpage/394581/394581/ReadMessage.aspx#394581</guid>
      <pubDate>Mon, 03 Aug 2009 05:05:40 -0700</pubDate>
    </item>
    <item>
      <title>Re: Calling VB6 DLL from Delphi</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/391200/392197/ReadMessage.aspx#392197</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/patilabhijeetj/"&gt;patilabhijeetj&lt;/a&gt; posted a &lt;a href="http://www.programmersheaven.com/mb/delphikylix/391200/392197/ReadMessage.aspx#392197"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/delphikylix/Board.aspx"&gt;Delphi and Kylix&lt;/a&gt; forum.&lt;/p&gt;&lt;br /&gt;
Cheers!!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Abhijeet Patil&lt;br /&gt;
patilabhijeetj at gmail</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/391200/392197/ReadMessage.aspx#392197</guid>
      <pubDate>Thu, 11 Jun 2009 09:26:44 -0700</pubDate>
    </item>
    <item>
      <title>Re: Problems with creating a DLL file in C++</title>
      <link>http://www.programmersheaven.com/mb/CandCPP/391502/391532/ReadMessage.aspx#391532</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/AsmGuru62/"&gt;AsmGuru62&lt;/a&gt; posted a &lt;a href="http://www.programmersheaven.com/mb/CandCPP/391502/391532/ReadMessage.aspx#391532"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/CandCPP/Board.aspx"&gt;C and C++&lt;/a&gt; forum.&lt;/p&gt;&lt;span style="color: Blue;"&gt;Follow these rules (download a doc to read these):&lt;br /&gt;
&lt;a href="http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx"&gt;http://www.microsoft.com/whdc/driver/kernel/DLL_bestprac.mspx&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/CandCPP/391502/391532/ReadMessage.aspx#391532</guid>
      <pubDate>Tue, 26 May 2009 04:20:05 -0700</pubDate>
    </item>
    <item>
      <title>Re: C++ with VB.NET</title>
      <link>http://www.programmersheaven.com/mb/cppnet/390602/390604/ReadMessage.aspx#390604</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/Lundin/"&gt;Lundin&lt;/a&gt; posted a &lt;a href="http://www.programmersheaven.com/mb/cppnet/390602/390604/ReadMessage.aspx#390604"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/cppnet/Board.aspx"&gt;C++.NET&lt;/a&gt; forum.&lt;/p&gt;None of those. To make a DLL in C and call it from VB works great.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/cppnet/390602/390604/ReadMessage.aspx#390604</guid>
      <pubDate>Thu, 07 May 2009 23:43:58 -0700</pubDate>
    </item>
    <item>
      <title>Re:  Unable to load DLL - Why ??</title>
      <link>http://www.programmersheaven.com/mb/csharp/390023/390038/ReadMessage.aspx#390038</link>
      <description>&lt;p&gt;&lt;a href="http://www.programmersheaven.com/user/Psightoplazm/"&gt;Psightoplazm&lt;/a&gt; posted a &lt;a href="http://www.programmersheaven.com/mb/csharp/390023/390038/ReadMessage.aspx#390038"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/csharp/Board.aspx"&gt;C#&lt;/a&gt; forum.&lt;/p&gt;So are all of those 15 DLLs being published along with - also do the DLLs also have all of their dependencies and so on...&lt;br /&gt;
&lt;br /&gt;
Perhaps there is a spec sheet somewhere that you can just re-write the thing in .net?&lt;br /&gt;
&lt;br /&gt;
&amp;gt;&amp;lt;/\/~Psightoplasm`~</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/csharp/390023/390038/ReadMessage.aspx#390038</guid>
      <pubDate>Tue, 28 Apr 2009 19:40:25 -0700</pubDate>
    </item>
  </channel>
</rss>