all groups > vb.net data > september 2006
can't start application because of password in Access
Posted by bob at 9/30/2006 4:48:15 PM
Hi,
I use a Access database for my asp.net application.
I use this connection string:
sConnectionString = "Provider = Microsoft.Jet.OLEDB.4.0; Data Source =
c:\mydb.mdb"
Now i put a pasword to the Access database and i changed the connection
string to:
sConnectionString = "Provider = M... more >>
Saving modification
Posted by Nagesh S K at 9/28/2006 12:00:00 AM
Hi All
I am new to VB and .Net. Have done some basic c programing about 10
years ago. I have downloaded Vb 2005 Express edition and trying to
learn it on my own. I have VB 2005 express for Dummies book and have
followed the examples given there.
I have built a programe which uses a single d... more >>
Data Access
Posted by Miro at 9/20/2006 2:53:50 PM
I am reading a VB.Net 2003 book and it has a Question and Answer section.
Is this statement still "True" with 2005 ?
Q:
I know all about the disconnected database architecture in ADO.NET, but my
database is in frequent use by other users, and I really want to make sure
I'm using the most ... more >>
Passing Variables to a Thread Procedure
Posted by Gabe Matteson at 9/20/2006 1:22:06 PM
Is there a way to pass variables to a thread procedure?
I have a procedure that is called
Private Sub rAllStats(ByVal sDir As String, ByVal blnNotAccessed As Boolean,
ByVal QueryTime As DateTime)
I want to have this procedure created inside a thread procedure so when this
is run, users ... more >>
Sorting a DataTable in a DataSet
Posted by Brad at 9/18/2006 2:43:38 PM
Is there an easy way to sort a DataTable in a DataSet? I've tried a variety
of ideas, but none of them seems to work. I'm reading in the data from an
XML file and I want to sort the list of results, one of the "tables", by
date then send the DataSet off for further processing. Any suggestio... more >>
Key Required for .Update with mdb file ? Assuming True
Posted by Miro at 9/15/2006 12:40:23 AM
I will ask the question first then fumble thru trying to explain myself so i
dont waste too much of your time.
Question / Statement - Every mdb table needs a PrimaryKey ( or maybe an
index - i havnt tested the index yet ) so you
can use an .UPDATE( dataTable ) on the data adapter. Other... more >>
Subtract Days from a Date
Posted by Gabe Matteson at 9/14/2006 12:41:48 PM
I want to be able to find out the names of files that have not been accessed
in the past X days...
i allow the user to put in the number of days, e.g. show all files that have
no been accessed in the past 30 days.
so i would do something like this:
dim lastaccessed as date
lastaccessed ... more >>
how do i display 10 records at a time using datagrid
Posted by josh7 at 9/13/2006 2:29:02 PM
How do i display 10 records at a time using datagrid in vb.net form. The
datagrid currently loads all the values from the query. I want to display the
first 10 rows and when the user clicks next button i want to display the next
10 records.
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Generating SQL on the fly?
Posted by Ross Contino at 9/12/2006 1:28:23 PM
Howdy:
I am an experienced VB 6.0 database programmer trying to write first VS 2005
application in VB 2005. I want to create an end user defined query and pass
it to the program. Specifically, I want to pass a date range, ie:
SELECT * FROM MYDATES WHERE ((theDate) Between #8/1/2006# And #8... more >>
File Not Accessed
Posted by Gabe Matteson at 9/8/2006 11:16:07 AM
I want to be able to find out the names of files that havn't been accessed
in the past X days...
so I want to do something like this..
date.today - txtlastdays.txt
9/08/2006 - 30 days = X
is this possible?
... more >>
Default values in added rows?
Posted by Steve Marshall at 9/7/2006 6:17:08 AM
I am using VS 2003 with a project involving an MS Access back-end
database. I have set up the Access tables with default values for many
of the fields. When I add a row to one of these tables, I do it using
code like the following:
dr = dsDataset.Tables("Tablename").Newrow()
dr("Field1")=va... more >>
VB.NET Progress Bar - Recursive Search
Posted by Gabe Matteson at 9/6/2006 3:58:26 PM
I am trying to set the maximum value of the progress bar so that when a user
searches through the specified directory they can see their status. the
progress bar name is on form2 and is named progstatus. Does anyone know how
to set this up with the code below? appreciate it. thank you.
... more >>
File Storage in SQL Server
Posted by H8ComputersSomeDays at 9/5/2006 8:38:02 AM
I am trying to figure out how to store external files in a SQL Server
database. I need to be able to store any type of file (i.e. images, Word
documents, PowerPoint presentations, etc.). I have not been able to find a
method to accomplish this.
I am working with Visual Basic .NET 2003 conne... more >>
Print text from a form
Posted by Cyberstar at 9/4/2006 8:53:35 PM
Hi,
I'm a VB.net newbie with a newbie question. How can I print text from a form
using
Private Sub PrintDocument1_PrintPage(ByVal sender As System.Object, ByVal e
As System.Drawing.Printing.PrintPageEventArgs) Handles
PrintDocument1.PrintPage()
Thank You
... more >>
|