VS 2005 Difference Between Vb6 And .net?
Feb 9, 2011
i have my final project viva, i developed my project in Visual Studio 2005 (vb.net) at front end and SQL Server 2005 Standard Edition at back end.so pleaseeeee tell me some most distinguish features of vb.net which i could tell the examine that why did i use this.and also tell me that what are most distinguish differnences between vb6 and vb.net..
View 3 Replies
ADVERTISEMENT
Jun 21, 2010
i wrote a software which would work perfectly fine on vb.net with connection string: [code] but if i try and run it on a pc with sql server 2005 installed it fails to run what changes do i need to do to make it run
View 5 Replies
Jun 19, 2009
I am writing an application to gather, display and export system information for use with a Support Dept.Is there a performance difference between using WMI and My.Computer.X.X in VS 2005? Is one method better practice than the other?There are more lines with WMI, but am willing to write more if it's considered good practice over using My.Computer.X.X.
View 2 Replies
Apr 9, 2010
i developed my project in Visual Studio 2005 (vb.net) at front end and SQL Server 2005 Standard Edition at back end. tell me some most distinguish features of vb.net which i could tell the examine that why did i use this.and also tell me that what are most distinguish differnences between vb6 and vb.net.give me such valuable information which makes my arguments more authentic.....
View 6 Replies
Aug 3, 2010
I've been using VS 2005 for quite some time and will be jumping to VS 2010 shortly. Are there any gotchas to be concerned about in making that transition? Is this a side by side install?
View 6 Replies
Feb 3, 2009
What is the difference, and why don't any of these methods work?
[code]...
View 3 Replies
Dec 16, 2010
From what I've read in the documentation, both of these methods roll the state of the datarow back to where it was the last time AcceptChanges was called. So what is the difference between them? Am I wrong about that?
View 4 Replies
Jun 13, 2011
what is the difference between key press event and key down event in vb.net
View 17 Replies
Dec 29, 2009
I supposed they should return the same values but oddly when I tried it I am getting different results?
View 4 Replies
Apr 9, 2010
i am a newbie in socket programming and remoting.May i know where lies the difference between the socket programming and remoting? Where do i start off to learn the basics of the socket programming?I haad a goo with the google search but unfortunately the search outcome results are a bit tough for me to understand
View 4 Replies
Jun 3, 2010
what's the difference between Environment.NewLine & vbcrlf any other line breakers which i dont know.
View 2 Replies
Oct 21, 2009
The particular control I'm trying to figure out is a UserControl. When I design it as a separate DLL, add it to the Toolbox, then drag it onto the form, it shows up. But when I declare the instance in Form_Load & add it to the Forms Controls, it doesn't show up. (Note that I'm dealing with two different UserControls here as what I don't really want to do is create it as a DLL. It's specific to this project & that's where I want it-in this project. I suppose I could create it as a separate project in this solution, but again-that's not what I want to do. I can add a UserControl to this project, but I can't seem to *use* it. Frustrating.)
Dim X As New Class3
X.Size = New System.Drawing.Size(96, 74)
X.Location = New System.Drawing.Point(5, 5)
Me.Controls.Add(X)
Me.Refresh()
Class3 inherits System.Windows.forms.UserControl, and contains a label.OK, found that I can make the UserControl appear by setting the BackColor (X.BackColor=). Doesn't seem like I should need to do that as it's set in Class3, but apparently when I add it to the form it picks up the form's backcolor-which might be the way UserControls work.
But, it still doesn't show the label that's on the UserControl-just a block of color where I placed the UserControl.And now, I might have solved this problem only to raise another. I finally noticed that although Class3 had an InitializeComponent sub it lacked a Sub New-so it never called the InitializeComponent sub.
I added a Sub New that does nothing except call InitializeComponent & now I'm getting the whole thing. I guess now the question is why the Sub New is required for Class3 but not for the DLL? (Or maybe it was created automatically for the DLL but not for Class3? I'll check the hidden code in the DLL project to see if it was created or not.)
View 8 Replies
Apr 27, 2011
If you have a form with two datagridviews that were dragged on to the form from a datasource that have a parent/child relationship with foreign key constraints. Is there any difference between using the binding navigator Delete button or adding a button to the form and in the Click event put "somebindingsource. RemoveCurrent". Basically what I'm trying to find out is if clicking the navigator Delete button causes "Removecurrent" or does it do something else or something additional.
View 2 Replies
Jun 13, 2009
Is there any difference between VB 2005 (from Visual Studio 2005) and VB.Net 2.0, either for using ASP.NET or Windows-based apps as a front end for SQL Server databases? I'm upgrading from VB6 to Visual Studio 2005. My research seems to show that VB.Net 2.0 is integrated into Visual Studio 2005, and the VB-specific books seem to only refer to VB in terms of 2005, 2008, etc.; I'm just trying to find out if they are the same or what the differences are.
View 5 Replies
Nov 6, 2009
What is the difference between Reference and Imported namespaces in "references" tab on Visual studio vb.net 2005?
View 1 Replies
Apr 18, 2009
I'm sure this is straightforward but I cannot find the correct string to get a google result. In VB.NET what is the difference between = (equals sign) and := (colon followed by equals sign)?
View 3 Replies
Mar 30, 2011
can anyone tell me book for VB.net for beginner and complee package of books important for VB. as i don't know anything abt VB.
what is difference between VB.net and asp.net and c#??
View 2 Replies
Aug 26, 2010
Possible Duplicate: What are the most important functional differences between C# and VB.NET? What are the basic difference between c# and VB.net?
View 3 Replies
Apr 27, 2012
know the difference between C#.Net and VB.Net. I use C#.Net for my projects, but when ever I met with some other programmers they often called VB.Net more powerful and easy, than C#.Net. I always asked them "Why it is more powerful then C#, since it uses the same framework?" but still I didn't get any answers.
View 3 Replies
Mar 1, 2006
what exactly distinguishes a COM component from a DLL? Isn't a COM component just a library of functions that can be called from another application? Why is using a COM component so much more complicated than just registering it like one would do with a DLL?
View 4 Replies
Jun 4, 2012
I'm looking for an explanation of the difference between
Dim sw1 = New StringWriter()
Dim sw2 As New StringWriter()
Both seem to instantiate new string writer instances that I can use.
View 5 Replies
Mar 10, 2010
I was under the assumption that VB's For Each loop was the same as a For Next loop. But when i try running the following code I do not get the expected result.
[Code]...
View 3 Replies
Jun 10, 2010
I have this code, first I thougt it should be the same but i cant acces the info in the same way .. why is this???
Dim tp(,) As Integer = {{1, 3, 5, 9, 7}, {34, 3, 4, 5, 6}}
Dim tpo(1)() As Integer
tpo(0) = New Integer() {1, 3, 5, 9, 7}
[code].....
The first one I use only one for each and the other one I use two .. why is this different? are noy they 2 dimensional arrays ???
View 1 Replies
Jan 18, 2011
What is the difference between VB and VB.NET?
explanation with examples preferred
View 6 Replies
Dec 9, 2009
The next code works fine in C#:
[Code]...
But this code crash with a OverflowException in VB.Net.
[Code]...
Both codes seems the same to me. What is the difference and how can I get the C# code converted to VB.Net?
View 6 Replies
Jun 13, 2011
For those who have experience, working with VB.NET, it's easier to use SlimDX or SDL? The tutorials for SlimDX are already written for .NET, but I've read that SDL it's a lot easier than DirectX itself.in my case, I just need 2D graphics.
View 4 Replies
Jul 2, 2010
I have two arraylists, and I would like to have a new arraylist with only the uncommon items. Is this the "best" or at least decent way to do it?
[Code]...
View 2 Replies
Jan 13, 2012
[Code].....
What is the major difference between 'for each' and 'for' loops in .NET? Is there any performance gain while comparing these two? Which one gives a better performance/faster/memory management?
View 1 Replies
Sep 26, 2009
I have in the past used .net executables as libraries. I'd just add them to the references in visual studio and I was ready to go. Today I tried the same to a new exe (actually mine) and it doesn't seem to work. When I add it to Visual Studio and try to watch its members on the Object Browser, it doesn't show up anything inside that executable's assembly.
I know the main difference between an exe and dll is that the first has an entry point while the 2nd doesn't. Are there any more differences? I know that unmanaged dll's also have a DLL entry point, do .net have one too?Also, what might be the reasons that could make my standard exe/dll (with this i mean, not obfuscated or anything extreme like that) not show up anything in the Object Browser?
View 1 Replies
Dec 3, 2010
What's the difference between / and for division in vb.net? My code gives very different answers depending on which I use. I've seen both before, but never knew the difference.
View 3 Replies