Search results

  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...
  15. D

    The notorious error message: Can't set value to NULL when CheckBox property = FALSE.

    Hi, My problem is this: Whenever I enter something into the form other than first choosing the date from the DateTimePicker's drop-down list, I get the notorious error message: Can't set value to NULL when CheckBox property = FALSE. What I can conclude is that the DateTimePicker can seemingly...
  16. D

    Data from a serial device, via ActiveX Control, into a form.

    See http://www.access-programmers.co.uk/forums/showthread.php?t=93328 I've tried using an ActiveX Control with the name of Microsoft Communications Control, version 6.0. Does anyone perhaps know how this control works? Any code or property advice that will get me on track will be appreciated...
  17. D

    RS232/Serial communication with Access

    Sorry, I'm not a programmer. I don't exactly know what you mean...
  18. D

    RS232/Serial communication with Access

    Is this possible? I have a Mitutoyo device that can be connected to a variety of Mitutoyo measuring instruments (in my case, it's a micrometer.) When triggered, the device obtains a measurement value from the instrument. One can view this value via serial communication in a program like...
  19. D

    Core Testing Database

    Thanks. This worked wonderfully.
Back
Top Bottom