Need Conversion help
-
I tried to convert this project http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx into VB. but the free converters on the internet are very buggy and i gave it up. Could someone convert it to vb for me? Thanky very much!!
-
I tried to convert this project http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx into VB. but the free converters on the internet are very buggy and i gave it up. Could someone convert it to vb for me? Thanky very much!!
No way is anyone going to do that. You can buy converteres, or you can put the code in a dll and just use it from there.
Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
-
I tried to convert this project http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx into VB. but the free converters on the internet are very buggy and i gave it up. Could someone convert it to vb for me? Thanky very much!!
-
I tried to convert this project http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx into VB. but the free converters on the internet are very buggy and i gave it up. Could someone convert it to vb for me? Thanky very much!!
Try this one : http://www.developerfusion.com/tools/convert/csharp-to-vb/[^] I'v never known it to fail (as long as you understand at least a bit of the code) Otherwise take CG's advice
-
I tried to convert this project http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx into VB. but the free converters on the internet are very buggy and i gave it up. Could someone convert it to vb for me? Thanky very much!!
umm it should be pretty straight forward .... just remember in C#
dim MyString as String = ""
=
string MyString = ""; <-- Dont Forget The ';'
if (...) then
...
else
...
end if=
if (...){
...
}else{
...}and so on ... any .NET programmer worth his salt should be able to do this.
If at first you don't succeed ... post it on The Code Project and Pray.
-
umm it should be pretty straight forward .... just remember in C#
dim MyString as String = ""
=
string MyString = ""; <-- Dont Forget The ';'
if (...) then
...
else
...
end if=
if (...){
...
}else{
...}and so on ... any .NET programmer worth his salt should be able to do this.
If at first you don't succeed ... post it on The Code Project and Pray.
-
I tried to convert this project http://www.codeproject.com/KB/miscctrl/FileBrowser.aspx into VB. but the free converters on the internet are very buggy and i gave it up. Could someone convert it to vb for me? Thanky very much!!
Get .NET Reflector here: http://www.red-gate.com/products/reflector/[^] Get file disassembler plugin for Reflector here: http://www.denisbauer.com/NETTools/FileDisassembler.aspx[^] Then just disassemble compiled project into VB. You'll get messy list of files but it will compile and will work, and you'll probably get what you need. However - my main comment is - don't stuck on one language! Learn VB.NET and C#. P.S. If you're asking someone to do your job every time - this means that you'll never get your own brains working.
------------------------------------------------------------ Want to be happy - do what you like!