all groups > vb.net > may 2006 > threads for sunday may 28
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Can you embed a SQL database?
Posted by ljh at 5/28/2006 11:17:15 PM
If I am using VB.Net 2005 with SQL Express or Developer edition and want to
embed the db into my project, how do I do that?
I can't find anything on embedding the db into a VB.Net 2005 app
anywhere.....
... more >>
Help connecting to northwind database
Posted by at 5/28/2006 6:07:50 PM
I am try this example on vb express 2005:
http://msdn2.microsoft.com/en-US/library/system.windows.forms.datagridviewcomboboxcolumn.aspx
but it keeps giving me an error about the data source to northwind database. I installed the SQL2000SampleDb.msi file, then ran this command at the prompt:
SQLC... more >>
CLS-Compliance and Array Parameter Rank
Posted by TC at 5/28/2006 4:50:41 PM
I just upgraded some code to VB 2005. When I did so, Visual Studio
generated several warnings telling me about things which weren't quite
perfect in my code. I resolved all the warnings except one. I need help
with this one.
'Public Function Multiply(A(,) As Double, B() As Double) As Double()'... more >>
ADO.NET and Currency Manager/Binding Context (Newbie question)
Posted by Sam Malone at 5/28/2006 4:20:47 PM
Just learning ADO.NET and came across the topic of Currency Manager/Binding
Context. I had NO idea (and still have little more) what these even mean. At
first I thought "Currency" Manager looked after $$$ vs Euros vs Pesos vs
Yen, etc. Apparently I was mistaken.
Can someone point me to a good... more >>
Combobox newbie q
Posted by Peter Morris at 5/28/2006 3:00:56 PM
Hi, I'm using VB 2005 express for the first time. I have used
other VB's before ie Excel, Access and VB6, but 2005 is
different to what I've used.
What properties do I set on a combobox to turn off the editable
box and restrict to the list of values?
How do I set the initial value displ... more >>
create registry key
Posted by Ben at 5/28/2006 2:43:22 PM
I am having a problem creating a registry key. I am using the following
code:
My.Computer.Registry.LocalMachine.CreateSubKey("Software\programalpha")
My.Computer.Registry.LocalMachine.SetValue("loglevel", "7")
My.Computer.Registry.LocalMachine.GetValue("loglevel")
When I run the above cod... more >>
Creating PDF file out of XML datasource
Posted by Puneet at 5/28/2006 1:37:00 PM
Hello everyone,
I have data in XML file, thats generated at runtime. Now i want to load
this all data into a PDF file and save that file... can someone suggest
me dome way of doing the same.
Thanx
... more >>
A (not so) basic question.
Posted by Roland at 5/28/2006 1:17:06 PM
The following issue is puzzling me:
There are 2 ways of writing the code below:
....
Dim fnt as Font = New Font(...)
DrawString(myText, fnt,...)
fnt.dispose().
or
DrawString(myText, New Font(...),...)
The difference between both is that in the second case, there is no way to
explicit... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
select case Type
Posted by PJ6 at 5/28/2006 11:38:46 AM
Select Case o.GetType
Case = GetType(SomeRandomTypeName)
'...
End Select
Why doesn't this work? Can I make it work or am I stuck with ElseIf for a
long list?
Paul
... more >>
|