Visual Basic and VC Code
This is a discussion about Visual Basic and VC Code in the Windows Software category; Hi Guys, I have program and its code in Visual C to extract Winace 2. x compression files. Is there a way to convert that into graphical form in VB. Or I have to write stuff again. ARC.
Hi Guys,
I have program and its code in Visual C to extract Winace 2.x compression files.
Is there a way to convert that into graphical form in VB.
Or I have to write stuff again.
ARC
I have program and its code in Visual C to extract Winace 2.x compression files.
Is there a way to convert that into graphical form in VB.
Or I have to write stuff again.
ARC
Participate in our website and join the conversation
This subject has been archived. New comments and votes cannot be submitted.
Jul 3
Jul 5
0
1 minute
Responses to this topic
Better find some VB version code. Porting from one language to another is not an easy task, and cannot be always done.
for example:
------------------------------------------
#include <stdio.h>
void main(void){
prinft ("Only 6 months for the euro\n"):
}
----------------------------------------------
BASIC code
10 print ("HELLO. Who cares about the euro")
-----------------------------------------------
Visual Basic (assuming you have a form with a "Main" button
private sub onclick()
Main.caption="the euro
Msgbox("I do care about the single currency")
------------------------------------------------------------
but what if...?
double getdata(double *x, double *y){
double FromBanderas;
FromBanderas=CallSomeTrickyFunction();
return FromBanderas;
}
nahh! forget it. It is a pain to port from C to basic. Better find some VB code, or learn C/C++ as I did
PS: please...NO COMMENTS on my code. I know these two pointers aren't needed, but hey, it's just some pointless code anyway...
for example:
------------------------------------------
#include <stdio.h>
void main(void){
prinft ("Only 6 months for the euro\n"):
}
----------------------------------------------
BASIC code
10 print ("HELLO. Who cares about the euro")
-----------------------------------------------
Visual Basic (assuming you have a form with a "Main" button
private sub onclick()
Main.caption="the euro
Msgbox("I do care about the single currency")
------------------------------------------------------------
but what if...?
double getdata(double *x, double *y){
double FromBanderas;
FromBanderas=CallSomeTrickyFunction();
return FromBanderas;
}
nahh! forget it. It is a pain to port from C to basic. Better find some VB code, or learn C/C++ as I did
PS: please...NO COMMENTS on my code. I know these two pointers aren't needed, but hey, it's just some pointless code anyway...