Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tonyladuk

    Deploy Application with extra files

    That's not really what I had in mind, I've already mastered adding files to a project but there could be upto 50 different files, all potentially upto 3MB in size. Therefore, I dont want to add them to the project or a cab file as I dont want that amount of data to be installed on the users PC...
  2. tonyladuk

    Deploy Application with extra files

    Hello! I've created a second project to my solution that handles deployment but its all a bit new to me so please bear with me! I've got the gist of being able to add files as dependencies and add them to the setup program so that when it has been published, it copies the files to the working...
  3. tonyladuk

    Saving and Opening different databases

    I just built and packaged my database application to see how it would work on another machine and the output file is saved in some bizarre location. Saving to the database is fine but there's a number of questions I have on this. So how do I: 1) Save the file to a user defined area (including...
  4. tonyladuk

    Save to database doesnt actually change the database

    Private Sub CustomersBindingNavigatorSaveItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CustomersBindingNavigatorSaveItem.Click Try Validate() CustomersBindingSource.EndEdit()...
  5. tonyladuk

    Save to database doesnt actually change the database

    I'm having problems saving back to an Access database. There's something i'm missing. I've just downloaded and produced the microsoft example called NorthWind in the hope that this would bring to light my problem. For those of you that dont know, its a simple customer table and using the wizard...
  6. tonyladuk

    Update to access doesnt seem to do anything (moved)

    OK, I've been playing with this all day today and yesterday. There's something i'm missing. I've just downloaded and produced the microsoft example called NorthWind. For those of you that dont know, its a simple customer table and using the wizard you produce a form that runs through the...
  7. tonyladuk

    Update to access doesnt seem to do anything (moved)

    I just thought you might want to see the Get from the database too. It just doesnt seem to update even if i call the get (for testing) right after the Set. It doesnt seem to do anything! I just dont understand! :( Public Sub SetAccountsToDataBase() Dim dsDataSet As New...
  8. tonyladuk

    Update to access doesnt seem to do anything (moved)

    Just on a side note, whats the easiest way of deleting all rows from the database to start with? I'm thinking that dsDataSet.Clear() is redundant because you're declaring it as new to start off with. Should (when it works) the update amend the new data to the end of the database or overwrite...
  9. tonyladuk

    Update to access doesnt seem to do anything (moved)

    By the time it gets to the update line, the row count in dsDataSet is 6. It seems as though it populates ok. Any specific properties you want to know when it hits the update line?
  10. tonyladuk

    Update to access doesnt seem to do anything (moved)

    Hello Smart people! I've done my research and self taught myself kinda how to use a database with VS2005 in VB. I've looked through the forums for an answer but cant find anything similar so sorry if this has been answered before. I'm using access (for ease of learning). Here's my code to...
  11. tonyladuk

    Update to Access DB doesnt seem to do anything

    Hello Smart people! I've done my research and self taught myself kinda how to use a database with VS2005 in VB. I've looked through the forums for an answer but cant find anything similar so sorry if this has been answered before. I'm using access (for ease of learning). Here's my code to...
  12. tonyladuk

    Printpreview errors when calling from mdi parent

    If you were here, i'd buy you a pint! Thanks for the help. FYI my OO is getting better all the time. The inheritance part always confuses me. Its hard when you're going from your own back so i'm learning as i go along. For example, when i discovered Properties, I had to go back and change all...
  13. tonyladuk

    Printpreview errors when calling from mdi parent

    OK I'm just about getting there, although I'm not sure how to use the inheritance as described above. Now in the mdichild I have this: Public Class Form1 Inherits System.Windows.Forms.Form Implements Iprintable Public Interface IPrintable Sub Print() Sub...
  14. tonyladuk

    Printpreview errors when calling from mdi parent

    Thanks so much for replying Christiaan, really appreciate the time. VB.Net is sortof self taught after working with VB6 for a year and programming was taught through uni so you'll have to bear with me for which I am sorry. If each child has their own Print and Printpreview subs, I assume I...
  15. tonyladuk

    Printpreview errors when calling from mdi parent

    Does anyone have any ideas? I'm clutching at straws here! Any help would be fantastic.
  16. tonyladuk

    Printpreview errors when calling from mdi parent

    The error only kicks in sometimes and when it does, the printpreview does not work again without restarting the application. PrintPreviewDialog1.ShowDialog() ArgumentException was unhandled Parameter is not valid. I’m not sure what the error is talking about because it works 50% of the time...

Part and Inventory Search

Back
Top