Search results

  1. D

    VB.net 2005 Global Variables and Functions

    Another thing you can do is if you just want global variables, is to create a module and declare your variables public and then import the module into your form. For Example Public Module Module1 Public gstrCustCode as String Public gstrCustName as String ... and then...
  2. D

    Problem with rounding off values

    I would check the field properties on the individual forms that are displaying the figures. (If you haven't already)
  3. D

    MkDir

    I would replace your & with +. I have the code doing almost the same thing and I had to use + I am using Access 2003
  4. D

    Copy OLEBound tiff file from database

    :confused: I have an Access 2003 database and I would to automate it to copy a file that was dragged into an OLEBound frame to a specific folder. I already have it creating a folder based upon the name input into another field. My code is below: Private Sub Command33_Click() Dim X As String X...
Top Bottom