|
I'm using VS.NET 2003 and VB.NET. I have placed my log4net.config file in the same folder as the source code and I want to automatically copy the log4net.config file to the bin folder just as the app.config file is copied to bin. Is there an automatic...
Started by Raj on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can do this by:
Click on your vbproj file and choose "Add Existing item" Navigte to the config file and select it Right click on the config file and make sure it is not set to "embedded resource" (... .
Include it as a resource, and choose copy always.
|
|
We are changing from vs2003 to vs2005 and use vb as our primary language, I am looking for some of the changes to VB that will be helpful in our ASP.NET development. Can someone point me to a list (maybe from microsoft?) or provide some of their favaorite...
Started by WACM161 on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Any .NET developer....
Give it a few more years.
WHOA! Not so fast there, buddy! What's the rush? Relax, guy .
I found the biggest improvements from .Net 1.1 to 2.0 were generics and yield return for easy implementation of ienumerables .
Better IDE for one.
|
|
How do I bitwise shift right/left in VB.NET? Does it even have operators for this, or do I have to use some utility method?
Started by Jeremy Rudd on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It's right there mate, just.
VB.NET has had bit shift operators ( << , >> ) since 2003.
|
Ask your Facebook Friends
|
I have a small diagnostic VB.Net application ( 2 forms, 20 subs & functions) written using VB.Net 2008 that targets Framework 2.0 and higher, but now I realize I need to support Framework 1.1. I'm looking for the most efficient way to accomplish this ...
Started by JBrisco on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In my experience, ....
However, you can probably save yourself quite a bit of work if you go looking for generics beforehand .
If you don't understand which bits are 2.0-specific, you're probably going to have to go the trial-and-error route .
Probably not.
|
|
I am trying to reach methods and properties of ObjectFrame through vb.net. But when I declared this as
Dim objOLEObject As ObjectFrame
and then trying to instantiate it as
ObjOLEObject = New ObjectFrame
it shows error like:
" 429: Retriveing the COM class...
Started by Suman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Adding to what Josh is saying, have you checked that all... .
I believe this is a class not registered error.
Make sure all dependant dll's are available.
Verify by looking in the registry for the CLSID.
Make sure the dll has been registered using regsvr32.
|
|
Hi
Not sure that this is a valid programming question ... but is it possible to program infa red using vb.net express (iRDA) Got a programming project in my mind, but none of the coding examples work, IrDAClient never gets recognised
Cheers
Started by spacemonkeys on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
On my system it was under....
There is nothing preventing you from using IrDAClient with VB.Net.
We do need System.Net.IrDA.dll.
VB.Net can certainly be used to program against IRDA.
It's a valid question but it needs to be a bit more specific .
|
|
Ok, I was rooting around in one of our company apps which is done in VB.net. I'm not familiar with VB.net (I do stuff in C#) so I'm asking this question: Does the code after the clean up comment execute?
Public Function DoesUserHavePermission(ByVal UserID...
Started by KeithA on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
VB.NET and C# are similar ....
It will still run..possibly...I used to write VB.net and it has been quite some time but I do remember and tried to write it in VB for VS 2003 (before VB supported the USING statement, but while C# did.
|
|
Hello all im coming from unix / server / c++ /java background with no GUI experience i need to build windows GUI application , i need to build it fast i was told that the .net family is the exact thing for such job . but there is VB.net and c# what should...
Answer Snippets (Read the full thread at stackoverflow):
To the question of deployment, your users will need to have the respective Server 2003 has .NET 1....
They are quite closely equivalent with VB.NET will be much steeper.
There is almost a religious war to the matters of VB.NET vs.
|
|
As per my application I want to write some Lines code in "ThisWorkbook" of Excel file using vb.net,before that we need to check the file for existance of code.
Please let me know any code or links for reference..
thank you...
Started by Suman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To adjust the security settings (all examples for Excel 2003):
(from a workbook): Tools > Macro >.
|
|
Are there any 'good' resources for porting a VB.NET winforms application to C#? I'm sure there are is software that just translates the code, but I'm looking to refactor the code at the same time. Keeping it in its current form is problematic, since it...
Started by George Stocker on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
(There was an old bug in Visual Studio 2003 that ruled out' practices that VB.NET....
And C# projects, I would recommend leaving it in VB.NET. If there are problems with the design, then fix a functional need that would force a conversion.
|