My company has an application developed in VB6. Now, we want to convert the application to .net technology. (windows based application) The exisiting...
... sure you can, the debugger can follow threads, freeze them and unfreeze them during execution. Just use the debug menu and break points as normal. Regards,...
I would recommend going to C#. I have used VB 6 and VB.net for a few years before C#. Now I prefer it. C# syntax and format is cleaner in my opinion. ...
Hi Amol I have a bias and it is towards C#. I have written from vb2 to vb6 and have done some work in vb.net and vb.net will work for you. But it is .net as is...
One thing that I have always told people when they ask this question is who is going to be doing the development and what do they know. Knowing VB might help...
Dear friends; your question is which best suitable for your aim C3 or VB? don't wory about this issue because with .Net package you are not c3 developer or vb...
I want to design a web alication using C# language.......................My applicationn demands selecting a folder from the hard drive, which will further be...
have a look around for a third party control that would be easiest, there are many open source as well. Regards, Alvin Bruney [MVP ASP.NET] [Shameless Author...
to print or view the datagrid rows, make the datasource that used in the grid is the source used in the report Mohamed Makeen +2-010-966-7747 Software...
Hi there C# pros, In VB you can exit function or a sub based on certain logical condition For instance: Sub DoSomething(s as String) if s = "" then exit Sub ...
Hi, You can try this DIV concept to print datagridview or any other control from asp.net http://www.codeproject.com/KB/aspnet/PrintPreview.aspx Best...
Hi, Shahid Maybe this link below will help you. http://ajaxwidgets.com/AllControlsSamples/TreeView.aspx Camilo Caetano IT Specialist - J2EE and REXX Developer ...
you might try the routine at the link below http://dotnetperls.com/Content/Recursively-Find-Files.aspx If you pass in the root directory of a drive then you...
you can either use return or break, depending on what you want to do. break -> break out of the if statement return -> skip the rest of the method ... From:...
Hello Edwin, Â I want to correct you. break can't be used to exit out of if statement. Â it can only be used with iteration statements & switch statement ...
Return is not the only jump, you can use a goto, it is valid as well. Regards, Alvin Bruney [MVP ASP.NET] [Shameless Author plug] Download OWC Black Book, 2nd...
Who made it bad programming practice? That's not correct at all. I keep seeing this being repeated blindly without understanding why. Goto is a valid statement...
Thank you for that. however, I was thinking of the jump as in this: public void somefunction() { goto end; //some statements go here end: ; } But you are...
Well, my mistake! I forgot 'IMHO' in my sentence so again: <IMHO using 'goto' is BAD programming practice!> In this specific thread the question was: "how to...