Search results for query: *

  • Users: acidflash
  • Content: Threads
  • Order by date
  1. A

    ConnectionString property has not been initialized

    Hello, I wrote a vb.net 2008 database program, and I set the connectionstring to be remote, ie: "\\xx.yy.zz.aa\whatever\database.mdb". Now whenever i launch my program, it gives me the following error, and yes I read the thread and wasnt able to solve it still... and I have been looking online...
  2. A

    Discovered bug in my software, Search / Listbox.

    I am writing a vb.net program with ado and i just recently noticed a bug that i need to fix in my software, but i havent the slightest clue where to start. Basically, I have programmed a search button with the sql commad "SELECT * FROM X Where FirstName = '" & FirstName.text "' AND LastName ='"...
  3. A

    Problem with database editing.

    I have a small problem with my program. When I launch the program I have a few parameters that I run to load datasets, and fill listboxes, etc. Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.Activate()...
  4. A

    Question 2 Listboxes, One showing data normally, the second showing System.Data.DataRowView

    Hello All, I am writing a small program and i have recently encountered a problem that i cant seem to find a solution to. I have 2 listboxes on a single page, and I am trying to populate both of them according to certain SQL commands. When I put one infront of the other, the one in front works...
  5. A

    Question i need to fill a 'container'

    Hello, I have a small project that i am working on and i am stuck and i am not sure how to make this work. I need ideas, and some sample code if possible. I have dimensions, for example, 180cm x 100 cm x 4 cm ; i need to fill a 'container' with several items of these dimensions and other...
  6. A

    Question Why is this returning syntax error

    Hello I have a line of code that is strangely returning a syntax error? it is the following "INSERT INTO TableName (Product, Quantity, Date, Price) VALUES ('test', '3', '11/5/2008', '1') From where im standing the string seems to be fine, any ideas? this is the error output Could not insert...
  7. A

    Question Changing Tablename in CrystalReport

    Hello, I have a database which has many tables in it, and also a VB GUI to it which creates databases on the fly, the layout for each database is the same, Column1, Column2, Column3, Column4, Column5 ; I have 1 crystal report called "ProjectReport" and inside this report I have the layout that...
  8. A

    Printing information from ACCESS database directly.

    Hi everyone, I was wondering if there is any way to directly print information from an access database. Specifically, i have about 5 columns that I want to print: each column has a lot of rows, and i want to print them all. How do I go about doing this? Thanks in advance. acidflash.
  9. A

    Creating Table in MS ACCESS 2003 database

    Hi everyone, I am having some trouble creating a table in a MS access 2003 database. I have tried using adox to create it with catalogues and with adox.columns.append command, with no luck. I have also tried using oledb.oledbcommand with the sql command "CREATE TABLE" with no luck. Can anyone...
Back
Top