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 Mike Lewis 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. Henaniy

    Grouping Shapes in VBA

    I am using data from oracle to draw a diagram. When I need to know is the vba code to group shapes. They also want the grouped shapes to be surrounded by a dashed rectangle. Anyone?
  2. Henaniy

    Counting Query

    Dim db as database Dim rst as dao.recordset Dim strSQL as string Dim lng as long Set db = currentdb strSQL = "SELECT * FROM [tblName];" Set rst = db.openrecordset(strSQL) rst.movelast lng = rst.recordcount
  3. Henaniy

    Access scrambles data transfered from a form

    Possible solution would be to print to file (i.e. *.txt) first and then load from txt file.
  4. Henaniy

    Copy a Report Control using code

    The setfocus command is for run time. That is why your getting the error. What are you trying to do with the copied object?
  5. Henaniy

    Requery Method

    I would trigger any requerying other controls on a form in the AfterUpdate event. The bound controls are coming from the forms record source.
  6. Henaniy

    rounding

    Try Format(CCur(Value),"$ 0.00") Or CCur(Format(Value, "$ 0.00")
  7. Henaniy

    Datasheet window position?

    In the Form_Open event type Docmd.Maximize
  8. Henaniy

    Tab Control and Filtering??

    Try the requery method in the Form event (Me.Requery)
  9. Henaniy

    Shell command to Zip & Unzip files

    Does anyone know what the vba shell command is to unzip a file? Any other alternatives would also be appreciated.
  10. Henaniy

    Easy Autonumber Question

    NewValues Property You can use the NewValues property to specify how AutoNumber fields increment when new records are added to a table. Note The NewValues property applies only to AutoNumber fields. Setting The NewValues property uses the following settings. Setting...
  11. Henaniy

    Importing a text file and adding date to each imported record

    Hey Instructor, First, do a manual import of text file. On the advanced tab, import the names of the fields you use in your access tables. Then save it. When you want to call in code, you refer to the import specifications that you saved. (i.e. DoCmd.TransferText acImportDelim, "New...
  12. Henaniy

    Zip and unzip using VBA

    Hello, Looking for the capability in VBA to unzip a file to *.txt Any clues... Henaniy

Part and Inventory Search

Back
Top