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.

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 in our website and join the conversation

You already have an account on our website? To log in, use the link provided below.
Login
Create a new user account. Registration is free and takes only a few seconds.
Register
This subject has been archived. New comments and votes cannot be submitted.
Jul 3
Created
Jul 5
Last Response
0
Likes
1 minute
Read Time
User User
Users

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...