Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C to VBS

Status
Not open for further replies.

crazypro

Technical User
Jul 5, 2006
6
FR
Hi,

I am new to this forum , i want to know whether we can convert 'c' source code to VBS file.If yes plz give some suggestion , it will be helpful for me.

thanx

Mahi
 
yes it can be done by hand by someone familiar with both but I don't know of an automated tool for performing this task
 
Shouldn't be too difficult unless they use case sensitive stuff in the code.

Code:
struct Fred {
   int A;
   float a;
};
translates to
Code:
class Fred
   dim A
   dim a
end class
This will give a compilation error. You need to change it so something like
Code:
class Fred
   dim intA
   dim fltA
end class
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top