|
Modularity of basic programming first appeared with visual basic? True or False?
Started by PulledBull on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
In general, you can use any programming approach with any ... .
I've seen examples of clean, modular BASIC code that predate VB.
False, even GW Basic & Quick Basic which have appeared before visual basic have modularity.
|
|
What does DIM stand for in Visual Basic?
Started by Nick on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Declares and allocates storage space for one or more variables
Dim Statement (Visual Basic to such basic questions are easy to find in the MSDN
Dim originally (in BASIC) stood for Dimension, as it was used to define the dimensions....
|
|
Hello,
For our VB.NET websites we use SVN for Source Control and CruiseControl.NET for continuous integration.
To use the SVN build number in the compilation by CruiseControl.NET we need to use Web Deployment Projects. We then replace in the configuration...
Started by David A Gibson on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It is possible to ignore errors, it is just in a weird place for vb.net.... .
If you used Nant in your build script you could just have it re-write the version prior to compile, and you wouldn't see the warning when you are working on your local machines .
|
Ask your Facebook Friends
|
How can i create and update mdb [ access ] files in visual basic 2008..
and also if i have a dll library how can i get all of its syntax for using it in visual basic
Answer Snippets (Read the full thread at stackoverflow):
Beware that the JET database....
The docs start here , this page has a specific example of creating a new database .
That gets you the ADOX namespace.
6.0 for DDL and Security".
Project + Add Reference, COM tab, select "Microsoft ADO Ext .
Here's one example.
|
|
I heard that this is not good.
but I want to make very generic programs.
would Visual Basic 6 suffice ?
Started by gpow on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Once you learned it, you ....
If you want to migrate to a newer version of Visual Basic the programming world, and you want to do some programs, Visual Basic is more than sufficient.
But it doesn't have a simple path forward.
|
|
Is there anything comparable to Visual Basic to use in Ubuntu?
Answer Snippets (Read the full thread at stackoverflow):
Kylix, now as Lazarus, if you aren't tied to a Basic variant.
It combines - it generates object oriented Forth code.
Language related to VB.NET, Visual Basic, Visual Basic for Applications, and Java.
|
|
How to implement multi-threading in visual basic 6.0. It would be great if someone can give an example.
Started by ravi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Background Threads with Visual Basic 6
If the problem that you are trying to solve is a long.
|
|
How can i add media player without controls and border in visual basic....
Answer Snippets (Read the full thread at stackoverflow):
ASPNetFlashVideo ....
Winforms? Microsoft explains how to do it here:
http://msdn.microsoft.com/en-us/library/bb383953.aspx
WPF? Look here:
http://msdn.microsoft.com/en-us/magazine/cc163455.aspx
Here's a great player that has fully customizable controls .
|
|
How is the Bluetooth connection by Visual Basic Dot Net readers and text sent by the Bluetooth and thank you
Started by PHP0 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The Coding 4 Fun Developer Kit (available....
Hope this helps, Best regards, Tom.
Maybe that is what you are looking for? It requires .NET v2 or better to use .
Maybe you should check out 32feet.net's blue-tooth software stack which is an addon component here .
|
|
Can i get an example of how to make something like a vector or an arraylist in visual basic .net
Started by crazybmanp on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Try the following
Dim list As New ArrayList() list.Add("hello") list.Add("world") For Each cur As String in list Console.WriteLine(cur) Next
Module Module1
Sub Main() Dim al As New ArrayList() al.Add("1") al.Add("2") al.Add("3") End Sub End Module
Dim... .
|