Convert vb.net to vb6 [closed] - vb.net

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have written code in c# and vb.net but now the requirement is vb6.Can i convert vb.net code to vb6.How to add namespace in vb6 System.Security.Cryptography

Quite apart from the fact that the language VB.NET is far more feature rich than VB6, the fact that you have developed in VB.NET means that you have made extensive use of the .NET class libraries (including System.Security.Cryptography that you give as an example). These are simply not available to VB6 code. There is no way to convert the code, you will have to start again.
If the company doesn't want the .NET Framework as you state, then you will have to either find some COM libraries that use the same functionality (that they are happy with you using), or you will have to roll your own (not advisable in the case of security functionality). Or you could find a different job...

Related

programming an accounting software in visual basic [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to learn programming accounting software in vb 6.0. Which book should I read for better achievement that teaches me everything step by step in advanced.
I myself started off with Vb6 a few lightyears back.Golden old days. Over the past years though, like almost everyone else, we have moved to vb.net and now c#.
If you are a beginner, sure you can still start with vb6, it is simple, easy to learn and then you can move on to more current technologies. However, in my opinion it will be better to start with either vb.net or c# directly. The reason being that most of the people are using these now, and lots of help is available. Whether you are looking for a job, or settingup your own company, vb.net ( and actually c# - they are verrrrry similar) would be a much better investment of time.
Rather than buying abook, you can also start with vb6 tutorials... see this link for absolute beginners
http://www.vb6.us/guides/visual-basic-6-beginners-guide
Wrox's books are pretty comprehensive, and yet beginner friendly. I'll provide you a link to the UK amazon for vb6 if you still want to go vb6 way, if you are not in the UK , you can search for it at a local bookstore/amazon
http://www.amazon.co.uk/Beginning-Visual-Basic-beginning-guides/dp/1861001053/ref=sr_1_3?ie=UTF8&qid=1364635699&sr=8-3
and as I said, why go vb6 way, when you will eventually end up using vb.net ( or c#). First get the free express edition of vb.net from microsoft here http://go.microsoft.com/?linkid=9816758
then this is a link to some great beginner tutorials for vb.net. get coding!!!
http://howtostartprogramming.com/vb-net/

Postgresql and OSX [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a project that's in the design phase and looking at my options have decided on using Postgresql for the application backend because of licensing and features. I have searched around but I am unable to find any solid information on using Postgresql in Xcode or even with OSX applications. Could someone point me in the right direction any help would be greatly appreciated.
You have not given quite a lot of context.
On the application side there are quite a few pieces of software running under OS X that interface with PostgreSQL, for example the standard GUI pgAdmin.
But I believe you're more concerned about the developers perspective. Probably the most common way is to use the libpq library that comes with PostgreSQL. It is well documented and rather stable. Integration into your software project should be straightforward.
If you are looking for an Objective-C framework, you could try out BaseTen. Never used that one, though.
If you want more specific help, you have to ask more specific questions.

can any one suggest me which project can be best for half known student of vb.net? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i am student of t y bsc...
i have my 1.5 month project
can any one suggest me any topics that can be also make some sort of money and easy to make a project
I want to used Vb.net and sql server ...............V S 2010 and sql server 2005
You can make project for library management system which every student make in its college time and this project also having difficult task(at student label) and try to implement each and ever task of library. try to implement barcode reader for books. Implemeting Bar code reader is not expensive.
Some other topic may be,
Work monitoring system,Hospital management,college management etc.

How to get the code from a `.dll` in C++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a .dll and I need some code from it. How do I get the code from a .dll?
If by code you mean the textual instructions that were used to generate the machine code in the library, the best you can really do at this point is assembly language. Nearly any debugger will let you view the assembly.
If you meant the original high level language, your out of luck.
You can't. You can open it up in a hex editor, but there is no way to get the original source code from compiled output. This is the basis for the entire closed-source (proprietary) software industry.

How to make a DLL in VB 6.0 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How would I make a DLL in VB 6.0?
I assume you mean an ActiveX DLL (in which case this question is a duplicate).
Just work through the step-by-step guide from the VB6 user guide Creating An ActiveX DLL. It's pretty good. It goes through creating the project, building the DLL, and making a client project, and then it explains some underlying concepts and gotchas.
If you mean a standard DLL check out the free tool vbAdvance.
A quick search on google revealed these instructions
Here's an FAQ I wrote on the subject a few years ago: http://www.tek-tips.com/faqs.cfm?fid=5940
# John Sibly: I don't think the OP was looking for how to create a standard (non-COM) DLL, but of course I could be wrong. The OP was pretty vague, after all. :)