Search results

  1. ___

    Epitaph

    I'd have in really small letters so people would have to get close to read it... You're standing on my n*ts!
  2. ___

    Shaped forms

    To do this, all your forms will need to be set up as pop up = Yes, Modal = Yes and all your error handling must be correct or your database will open without being visible and you'll need to reboot to amend the errors because it will not even be visible in the Task Manager. Copy and past the...
  3. ___

    Shaped forms

    Maybe create several car shaped forms and use DoCmd.MoveSize on a timer event to race them around the screen....We could have bets and everything :rolleyes: :D
  4. ___

    Shaped forms

    Unzip the folder to your desktop and open the db :)
  5. ___

    Skiing In Canada

    I think this is better :D
  6. ___

    Desktop Remote Connection With XP Home

    I use Real VNC... http://www.realvnc.com/
  7. ___

    Help!!!

    Nothing will be lost if you import everything into a new database. As it stands at the moment, it sounds like your db is corrupt, that's why it won't compile.
  8. ___

    Help!!!

    Right click in a blank area on any of the tabs, left click on Import and select your db
  9. ___

    Help!!!

    Try importing all your tables, forms, queries etc into a blank database and running it again
  10. ___

    SendObject

    All sorted, I did it by renaming the reports caption dynamically before firing the SendObject :)
  11. ___

    SendObject

    Does anybody know if it's possible, using the SendObject command, to change the Name of the attachment it creates? Rather than having the Name of say the report, changing it to tha date/time. Any help appreciated.
  12. ___

    Clearing password input box

    Me.YourTextBox = ""
  13. ___

    Disappearing text

    Glad it worked :)
  14. ___

    Disappearing text

    You could use something along the lines of.... Private Sub YourMemoField_KeyDown(KeyCode As Integer, Shift As Integer) Select Case KeyCode Case vbKeyReturn MsgBox "You Pressed Return" Me.AnotherControl.Setfocus Case...
  15. ___

    Status Bar

    You could try playing with this.... Function ChangeProperty(strPropName As String, varPropType As Variant, varPropValue As Variant) As Integer Dim dbs As Object, prp As Variant Const conPropNotFoundError = 3270 Set dbs = CurrentDb On Error GoTo Change_Err...
  16. ___

    Stretching Form

    You must have mistaken me for someone else :D
  17. ___

    Stretching Form

    Look up... DoCmd.MoveSize ;)
  18. ___

    Sub Form Help

    Where are you having problems? You could post a stripped down version of your db if you want us to take a look for you.
  19. ___

    Print Options

    You could create a table with two columns. Column one ID number (not autonumber), column two all your reports, then base the listbox query on that table and order by number.
  20. ___

    Print Options

    Create a listbox on a form and call it LstReports. In the Multi Select properties select 'simple'. In the Row Source place the following query... SELECT MSysObjects.Name FROM MSysObjects WHERE (((Left([Name],1))<>"~") AND ((MSysObjects.Type)=-32764)) ORDER BY MSysObjects.Name; This will list...
Back
Top Bottom