Search results for query: *

  1. C

    Question Validating data before executing multi looped query?

    I wrote a VB.NET 2010 application that writes to a MS Access DB via an ODBC connection. This application is intended to take the place of the paper based Non Product PO system. The functionality in question works as follows: A user opens the program to a blank PO form. They can search for an...
  2. C

    Question Create a dynamic user interface to accept 1 or more line items to add to database?

    I'm trying to code a small application that basically manages non product PO's. In other words a front end to a access database that can create/edit/print/email...purchase orders. PO's essentially have some standard info on each such as a PO number, vendor name, date and so forth. They will...
  3. C

    Question Deployment Issues

    I developed an application in VB.NET 2008 express that connects to a MS Access DB over the network. Throughout the process I tested this app on other computers to make sure that it would work. Everything was fine until today. When I copy the debug folder with the exe and all (as I...
  4. C

    Question .MDB Date Issues

    I am using VB.NET 2008 Express edition with a connection to MS Access 2007 saved as an .mdb not .accdb. If I set the database to create the primary key and all the fields are text there is no issue. However if I set several fields as a simple date mm/dd/yyyy i run into problems. When I...
  5. C

    Printing more then 1 page

    Ok I have a dynamically allocated “For loop” that will print something to the screen and increment and continue to print until all the stuff in the list box is printed. I know how many items I can fit on a page (about 13). What I need to do is have the loop go through 13 times then set...
  6. C

    Setting a relative DB location

    I was wondering how you can set a relative DB location in vb 2005. Right now I have an exact location of MyCon.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=F:\UNH\CS 623\projects\ASAP.mdb" I would like to be able to trasport this aplication to other computers...
  7. C

    Changes not displaying in runtime

    I'm new to VB.NET and I think I screwed something up. As of yesterday any changes I made to my forms displayed when I ran the project. However today if I add a text box or move a button (save) and run the form it is as if I am viewing what I did yesterday. I closed the application and the...
  8. C

    Modifying textbox from different procedures?

    I have a textbox on my form that is initialized to a value on load. The string is declared globally. I also have a public procedure that is an event timer. When the event timer is fired I want to set that text box value to something different. However when the timer event fires I get an...
  9. C

    Filling a combo box from a module

    I have been playing around with Access connections using ado.net. I have successfully made a connection and passed info from the database to a form. Recently I started using modules which I have the form call. I am able to pass string variables back but I ‘m a little confused what to pass...
  10. C

    How to make a simple access connection?

    All I am trying to do here is make a connection to an access database to retrieve a few records and populate a list box. Below you will see the code I am using. When I run the program and hit connect it says the connection is still open and cannot be closed. Then it jumps to this statement...
  11. C

    Convert a Public Class Private Sub into Module?

    I'm new to VB.NET and I'm not the best programmer so please don’t be too hard on me. The following is the code which is declared in the Public Class. Private Sub PrintMe_PrintPage is basically what is called when I want to print something in VB.NET. What I would like to do is move this code to...
  12. C

    How to print contents of PictureBox?

    Hello all! I'm working on a barcode project in VB.NET 2005. I'm not a terribly good programmer and need a little help here. What this program does thus far is take input from a text field and passes it to a module where the input is converted into binary and printed as lines to a picture box...
Back
Top