-1
votes
1answer
31 views

Changing Encoding UCS-2-LE w/o BOM to readable format [closed]

I have a large file of about 80MB which is encoded in UCS-2 LE w/o BOM. I don't know what that is and how to change encoding in readable format. Kindly provide the Code in PHP or C or any application ...
1
vote
1answer
107 views

Generate documentation for 2 languages with same code

Can I somehow generate documentation for 2 different languages with same code? Problem is that I have a C API that is also exposed trough a proprietary language that resembles VB. So the exposed ...
0
votes
2answers
176 views

GUI in different languages - What is the best to use? [closed]

I am wondering which languages support the best (as in easiest to use) GUI platforms (as it relates to tying in with language). Thus far I have done very little in Java but so far I really find that ...
3
votes
2answers
454 views

VB6 - Declaring and calling C DLL with pointers

I have an old C DLL I use to call from Ruby, but now I need to call it from VB6 and I can't figure out the correct way to do so. Here is the header for the function I need: int Decrunch(const BYTE ...
0
votes
1answer
358 views

How to send message to a server through socket in 'C' when server is started after the client?

I have made a client (in C) which is trying to connect to a server (in VB 6.0) till the connection is established. If the server is ready t listen and then we run the client program trying to connect ...
2
votes
4answers
394 views

How are heaps created in mixed language applications?

We have a front end written in Visual Basic 6.0 that calls several back end DLLs written in mixed C/C++. The problem is that each DLL appears to have its own heap and one of them isn’t big enough. ...
0
votes
2answers
636 views

VB6 integer to two bytes (C short) to send over serial

I'm expanding a VB6 application which communicates with small embedded systems to use the serial port (they currently use UDP broadcasts); and thus am trying to emulate UDP packets over serial. Part ...
1
vote
2answers
408 views

How can I get the IUnknown* pointer (if any) for some Visual Basic 6 control?

I'd like to call some C functions from a Visual Basic 6 program which take an IUnknown*. Assuming that I know that some control in my VB6 application is an ActiveX control, can I get the underlying ...
2
votes
3answers
932 views

VB6 - How to pass Strings to a DLL written in C through a .tlb File

I'm working on a graphical interface written in VB6, where I have to call function contained in a certain DLL written in C. Because of a known limitation I had to implement a trick that allows me to ...
4
votes
1answer
832 views

Serial Port Programming? [closed]

I think This question might be very general...I am new to Serial port programming on windows(XP). I would appreciate for valuable suggestions on :- Where to start ? ( Any tutorial link ). Language C, ...
2
votes
1answer
1k views

Which Blowfish algorithm is the most 'correct'?

I'm running Windows Server 2k8 (maybe that's half the problem?) Anyway, I'm getting different values out of different Blowfish modules in various languages. Is there one which can be relied upon as ...
1
vote
1answer
1k views

Calling C DLL from Visual Basic 6: Double data type not working

I'm passing a simple user-defined type (UDT) from Visual Basic 6 to a C DLL. It works fine, except for the double data type, which shows up as 0. C DLL: #define WIN32_LEAN_AND_MEAN #include ...
2
votes
6answers
392 views

How to make a program that automatically synchronizes

Hey i am hoping to write a program where the program automatically just copy pastes all my dad's documents from D:\office folder. So whenever I plug-in my pen-drive , the program silently copies all ...
0
votes
1answer
340 views

Calling a win 32 C Library function from a VB 6.0 dll crashes

I have a C Library Cdll.dll which has the function int _stdcall AddVersion(int repval) { return (repval + 10); } I am calling this AddVersion function from a VB dll. Private Declare Function ...
0
votes
1answer
151 views

Due to Shared memory, when MS Visual C 6.0 DLL crashes it also causes VB 6 EXE to crash

I have a problem where Due to Shared memory, when MS Visual C 6.0 DLL crashes it also causes VB 6 EXE to crash. Our main program EXE is written in VB 6. It calls plug-ins (DLL's) for the various file ...
1
vote
1answer
830 views

Automation Error - Not enough storage is available to process this command

VB6 CreateObject() is advising this error message: "Automation Error" - "Not enough storage is available to process this command" The object being created is a DLL written in C. I'm running the ...
1
vote
1answer
102 views

C++ library works in vb6 but not in c#

I'm writing a C# application that has to consume a C++ api provided by my customer. The library works fine when it's referenced by a vb6 application, but when I reference it in my c# application and ...
2
votes
4answers
325 views

Converting C (not C++) to C#

I have some old C 32 Bit DLLs that are using Oracle's Pro C precompiler library (proc.exe) to expose a hundred or so sproc/func calls to an even older VB6 GUI which references these functions through ...
0
votes
2answers
776 views

Tool for converting C header files (.h) to VB?

I can see that there are tools for converting .h to Python, Perl, D, Pascal etc. Are there any for VB6 or any other VB-alike tool (like Jabaco for instance)?
1
vote
3answers
486 views

How many asterisks should I use when declaring a pointer to an array of C-strings?

I am having a VB application request a list of users from a C DLL: VB will ask the DLL how many users there are, and then initialize an array to the appropriate size. VB will then pass its array by ...
0
votes
3answers
2k views

calling a DLL made in VB6 from C

Okay, this one is the reverse of the last question I struggled with... I feel like I'm sooo close to getting it but it's just not working. Before, I was trying to compile a DLL in C, and then call it ...
13
votes
5answers
26k views

Compile a DLL in C/C++, then call it from another program

I want to make a simple, simple DLL which exports one or two functions, then try to call it from another program... Everywhere I've looked so far, is for complicated matters, different ways of linking ...
14
votes
4answers
9k views

C/C++ 'continue' Equivalent in VB6

Is there a VB6 equivalent to the C/C++ 'continue' keyword? In C/C++, the command 'continue' starts the next iteration of the loop. Of course, other equivalents exist. I could put the remaining code ...
10
votes
5answers
19k views

How to convert char * to BSTR?

How can I pass a char * from C dll to VB Here is sample code: void Cfunc(char *buffer,int len) { BSTR buf_bstr = SysAllocString((BSTR)buffer); VBptr.VBfunc(buf_bstr,len); } This function is ...
2
votes
3answers
6k views

Calling DLL functions from VB6

I've got a Windows DLL that I wrote, written in C/C++ (all exported functions are 'C'). The DLL works fine for me in VC++. I've given the DLL to another company who do all their development in VB. ...