can u say how to create a .exe file for V.B 6.0 application
Hi all,
till now so many times i created .exe files for my v.b applications.those are working. how i did was by going to "file" menu,there i would select "make applicationname.exe".
but in my current v.b application, i am calling a .dll file which was developed in vc++ application.
but the problem is when ever i ran the .exe file. a popup window is coming and saying that a critical error is occured...
can u say how to create a .exe file for my v.b application, suppose if it contains a .dll file?
and my version of v.b application is 6.0
Re: can u say how to create a .exe file for V.B 6.0 application
Is this error on the develpoment machine, or on another machine?
If the last: Did you install the program on the other machine, or did you just copy the exe?
Re: can u say how to create a .exe file for V.B 6.0 application
HI all,
my original application is working well, the problem comes only when i made it .exe. when ever i try to run .exe it is giving me errror like..(please see the attached word document... there i pasted screen shots)
i placed my .exe file in a folder where my dll file is placed. and before making my v.b app as .exe, i gave correct path of my dll file also
the following is regarding to decleration which says v.b app where my dll is placed . "CrcComputeCrc32" is my dll's method name.
Please see the attached word document regarding to the error what i usually getting.....
Private Declare Sub CrcComputeCrc32 _
Lib "VC++\CRC32Example\Debug\CRC32Example.dll" Alias "_CrcComputeCrc32@12" _
(ByRef FirstElement As Byte, ByVal intNoOfElements As Integer, ByRef bytCrc32Array As Byt
Re: can u say how to create a .exe file for V.B 6.0 application
Originally Posted by Frans C
Is this error on the develpoment machine, or on another machine?
If the last: Did you install the program on the other machine, or did you just copy the exe?
Re: can u say how to create a .exe file for V.B 6.0 application
Hi Frans c,
by mistakenly i put the path like that, but i changed it in my real application
the following is the function call, thats what i am calling in v.b application.
Call CrcComputeCrc32(bytChannelLock(1), intCrcLength, bytReflectArray(0))
bytReflectArray(0) is an arrray of byte type, is used to hold the result of the crc value. when ever crc is found in vc++ application, it places the result in this "bytReflect......" array. means as it is call by ref, and am sending this as a parameeter, the values will be put in this array in vc++ will also be reflected.
bytChannelLock(1) is also an array contains byte data on which i have to find the crc32, and intCrcLength is a integer type variable says on how many elements CRC is to be found(simply length of the 1st parameter).
//here u8ptrdata is a pointer, of unsigned char which takes one byte.
//U8Crc32Array is an arraay, in which the final result is stored.
{
//SDD-0006
// This variable holds the current data byte
UINT8 u8DataByte = (UINT8) NULL;
UINT32 u32PreviousCrc = NULL;
//SDD-0007
// Complement the u32PreviousCrc.
u32PreviousCrc ^= (UINT32) 0xFFFFFFFF;