Search results for query: *

  1. W

    Install Font on user's computer

    Does anyone now how to install a font on the user's computer during setup. I haven't worked with any custom output when creating a setup project, but I'm asuming that I just need to copy the font to the user's windows/fonts directory. I've googled everything I can think of to no avail. If...
  2. W

    Create MenuItems from an Access Database

    Thanks so much!!! That is what I needed!!!
  3. W

    Create MenuItems from an Access Database

    Hello all, I'm trying to load menu items from an access database, I guess similar to how internet explorer loads your favorites onto the menu (but from a database instead of a directory). I'm not reall sure how to get started with this. I figure I will need to create the menu items while...
  4. W

    Relational Data, I'm Stuck!

    Now we're getting somewhere!!! I'm think I'm getting it now. Thanks so much for time. I really really really appreciate it!!!!
  5. W

    Relational Data, I'm Stuck!

    Ok, perhaps a silly question here, but this is what I'm trying... TextBox6.Text = ComboBox1.SelectedIndex("catID") TextBox6 bound to the "title" field of the "items" table, ComboBox1 bound to the "CategoryName" field of the "Categories" table, and "catID" is the ID field of the Categories...
  6. W

    Relational Data, I'm Stuck!

    I've been working with vb.net for a little while now, and I've got an ok grasp on things, but I cannot seem to figure out how to manage relational data between tables in an ms access database. I'm sure this is too much to cover in one post, but does anyone know of an article, or an example...
  7. W

    How to hide a form

    I may be of base, but have you tried doing something like this. http://www.google.de/groups?selm=u%23xQOutWDHA.2100%40TK2MSFTNGP11.phx.gbl It worked for me...
  8. W

    Lifecycle of a variable

    Thank you for the response! I've got it working now. It looks like the variable was working fine, but I wasn't updating the label where I needed to. But again, thank you for the response.
  9. W

    Lifecycle of a variable

    Hello all, I'm a newbie attemping a simple card game in vb.net. I've got the game working reasonably well, however, I'm trying to create sub procedures just to learn how. I have the variable "iusertotal" that holds the user's total. This variable changes throughout a single game based on...
  10. W

    linking forms, dynamic content (database)

    Hello! Well, hopefully this question is not too silly, but I am a complete newbie in need of some direction. Two quick questions about navigation. First, how can I open a new form, while closing the current form. I've tried this: Dim f2 As DataForm1 f2 = New DataForm1 f2.Show()...
Back
Top