|
I'm asking this question as someone who works for a company with a 70% to 75% VB.NET developer community. I would say 80% of those developers do not know what an OOD pattern is. I'm wondering if this is the best thing for the health of my company's development...
Started by tyndall on
, 19 posts
by 19 people.
Answer Snippets (Read the full thread at stackoverflow):
That being said, having....
VB6 to C# is a different story.
I'm sure most of the time the reason companies go forward with VB.NET is exactly as you mentioned that ASP websites and VB6 applications can be migrated to VB.NET with little to no pain.
|
|
I want to skin a vb.net app I made ive googled some stuff and I've seen skinned vb.net apps.
However it seems like any time i try to find someone explaining it its a link to a pay for product.
Does anyone have anything useful on this?
Answer Snippets (Read the full thread at stackoverflow):
Ryan
I remember making a "skinnable" vb.net winforms app (a media player
ex http://www.cushingproductions.com/dev....
It simply uses the standard windows shows a lot of promise .
Unfortunatly VB.NET does not provide 'skinning' out of the box.
|
|
After two years of C#, my VB.net is a bit rusty. I have two List. Let's call it originalList and targetList. Here is my C# code.
for(int i = 0; i<originalList.Count; i++) { bool isMatch = false; foreach (string t in targetList) { if(String.Compare(...
Started by Jack on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Funny thing is i starting to get rusty with C# as well as ... .
It's hard to go back to VB.net after two years of C#.
In the VB.NET version, the end step of the loop is calculated once, at the entry into the loop, then it was a subset of B.
|
Ask your Facebook Friends
|
Hey, how this is written in VB.NET? This was an example I found on http://www.codeproject.com/KB/silverlight/SynchronousSilverlight.aspx .
ThreadPool.QueueUserWorkItem(delegate { var channelFactory = new ChannelFactory<ISimpleService>("*"); var ...
Started by sv88erik on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To convert that syntax to VB.NET you have to move.
Good code samples):
VB.NET doesn't support anonymous methods, which are supported in C# by using the delegate {} syntax to define an inline method.
|
|
This is probably a very easy question for most of you, but please try to help me. I have 50 checkboxes that i need to have and every checkbox comes with 3 textboxes. so the example is - chkbox State Name donation new donation chkbox CA Sam 10 15 chkbox...
Started by terr on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can create an array of checkboxes with a size of 50:
Dim checkboxs(50) as Checkbox
To handle the fact that each checkbox comes with three textboxes ... .
You need looping constructs like For or While.
You don't need recursion for something like this.
|
|
I'm working on becoming as familiar with C# as I am with VB.NET (the language used at my workplace). One of the best things about the learning process is that by learning about the other language you tend to learn more about your primary language--little...
Started by Yoooder on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Omitting WithEvents doesn't block members from raising events, it just stops... .
Assuming the class has public events and we're not modifying it, you can't stop someone from adding an event handler .
In C# you simply wouldn't add a handler for any events .
|
|
What is the limitation of vb.NET and PHP?
WHAT Are the contributions of PHP and vb.NET in OOP? Categories :
PHP vb.net
Started by zanecalilung on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at quomon):
|
|
I have a vb.net application written for PDA's.
Is it possible to write a VB.net application for a Blackberry?
Started by micheal on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Actually, you.
VB.NET is not officially supported though, sorry.
I've programmed which should make life much easier.
The very old Mobitex pagers used C++, but again, no VB.net support.
Started pages.
|
|
How do I get the system time using vb.net and copy it into clipboard automatically? Is there a built-in function in vb.net for this?
Answer Snippets (Read the full thread at stackoverflow):
I'm not sure what you mean by System Time but if it's just the string representation of the current time then you can do the following
ClipBoard... .
Or take a look at this post.
Use DateTime.Now to get the time and Google for the code to copy to the clipboard .
|
|
Are there any good conversion tools out there to convert VB.Net code to C#?
FREE developerFusion Telerik CodeConverter SharpDevelop PAID VBConversions Vbconversions VB.Net to C# Converter Download3000 VB.Net to C# Converter
Started by norlando02 on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
You can also back the other way and you can convert to Boo .
I did a google of "vb.net has a VB.Net to C# converter.
There are several products on the market that you can choose from .
This way.
|