Visual Basic and VC Code

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.

Windows Software 5498 This topic was started by ,


data/avatar/default/avatar14.webp

507 Posts
Location -
Joined 2000-01-30
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

Participate on our website and join the conversation

You have already an account on our website? Use the link below to login.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


data/avatar/default/avatar26.webp

85 Posts
Location -
Joined 2000-12-30
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...