i m doin a project in which i need to use ftp
for that i need to include the modJPEG.bas
anyone know how?
thank u very much
i m doin a project in which i need to use ftp
for that i need to include the modJPEG.bas
anyone know how?
thank u very much
A short follow-up to what asked and already suggested, with a few practical pointers that avoid the most common roadblocks.
First, confirm which Visual Basic is in use. A .bas module is native to classic Visual Basic (VB6). If the project is VB6, adding the module is fine but watch for name collisions (module vs form names), missing COM references, and VB6-specific statements that can cause compile errors on modern systems. If the code uses API declares, those declarations assume 32-bit pointers and may fail or behave oddly on newer platforms.
If the project is VB.NET, .bas is not a native source file. Convert the code into a VB Module (.vb) or paste and adapt it. Pay special attention to data-type and API differences: VB6 Long is 32-bit, while VB.NET Long is 64-bit; use Integer or IntPtr as appropriate. Replace VB6-style external calls with correct P/Invoke signatures or the Declare syntax supported by .NET. Many image tasks are easier in .NET using System.Drawing or a maintained imaging library, and FTP work can be done with FtpWebRequest/WebClient or a third-party client for SFTP.
Finally, if modJPEG.bas is third-party code, confirm licensing and test thoroughly (compile, run, and check for threading/64-bit issues) after inclusion or conversion.
Jump to Post— QVeen72 104Hi,
Do you have the module..?
if yes, then goto menu:
Project >> Add Module
Select "Existing", tab
browse and addRegards
Veena
Hi,
Do you have the module..?
if yes, then goto menu:
Project >> Add Module
Select "Existing", tab
browse and add
Regards
Veena
thank u i wil try
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.