Recent content by dawkirst

  1. D

    Can I copy files and folders with VB...

    Thank you.
  2. D

    Can I copy files and folders with VB...

    If I'm not mistaken, Windows XP has an inbedded writing ability that allows you to write files and folders to a DVD (or CD) by simply drag-and-dropping them onto the DVD. Won't this apply to a simple copy command too?
  3. D

    Can I copy files and folders with VB...

    Just as I would, say, with MSDos? The reason I want to know this: I want to write a simple backup application that simply copy files from the HDD to a DVD. Preferably, a date label should be assigned to the DVD. Any suggestions?
  4. D

    "Do you want to save the record?" message.

    What exactly does this code do? I need a bit of explaining to incorporate it into my form. If Me.Dirty Then Me.Dirty = False End If DoCmd.Close acForm, Me.Name Thanks ahead.
  5. D

    "Do you want to save the record?" message.

    Thank you. I'm sure it'll help.
  6. D

    "Do you want to save the record?" message.

    Certain fields in my form are required before a record can be saved. I have a "save record" button and a "quit form" button. When the form is quit before a record is saved, all data entered into the form are lost. This resulted in people entering data that were never saved, because they are...
  7. D

    CheckBox.Visible = False

    Thanks, it worked. However, I want the CheckBox's Visible property to turn False on four specific values (not only one.) The colors are W/Blue, W/Green, W/Brown, and W/Orange. This code does not work. Only one color keeps toggling the Visible property: Private Sub Combo75_BeforeUpdate(Cancel...
  8. D

    CheckBox.Visible = False

    Greetings. I have a ComboBox and a CheckBox on my form. The ComboBox gets its values from a table called Colors. I want the CheckBox's Visible property to turn False when the ComboBox has a certain value. This is the code I used: Private Sub Product_AfterUpdate() If Combo75.Value = "W/Blue"...
  9. D

    Gridlines.

    Don't tell me there's no way to do this...
  10. D

    Gridlines.

    How can I make the gridlines on the forms smaller, more dense? Thanks.
  11. D

    Alphabetical sort orders.

    Hello. How can I preserve the user-defined sort order in a column in a table? Every time I exit the table, and go back, my items have been alphabetically sorted. This results in my Combo Box displaying the list in alphabetical order, rather than my custom order. Thanks ahead.
  12. D

    Combo Box default value.

    Thanks. I entered this code: Private Sub Form_Load() Me!Product.DefaultValue = Me!Product.ItemData(0) End Sub (Product being my Combo Box's name.) However, I get a #Name? in the Combo Box now. Any ideas?
  13. D

    Combo Box default value.

    Thanks. Me!ComboName.DefaultValue = Me!ComboName.ItemData(0) ComboName being the ComboBox's name. DefualtValue? Is this merely a property control, or a user defined value, like ComboName? ItemData(0)? I apologize, I'm not a programmer.
  14. D

    Combo Box default value.

    Hi guys, In my form I have a combo box that is bound to a product/specification table. When clicked, this combo box displays a list of products, each with its respective set of specifications (although I configured it so just the product column can be seen.) The reason I do this, is so that...
Back
Top Bottom