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 strongm 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. tinymind

    Unknown character

    I know of one "chr(027)" Tiny Perfection is Everything If it worked first time we wont be here!
  2. tinymind

    Visual Basic coding to show users in MS Access Database

    Here is a link to a useful page with an example of how to use the LDB Viewer in an MS Access 2000 form. http://www.mvps.org/access/modules/mdl0055.htm Hope it helps ... Tiny Perfection is Everything If it worked first time we wont be here!
  3. tinymind

    "Find Record" button question

    What version of Access are you using? In Access 97 ... I use this depending on what I am looking for: DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70 I ask the user to click in the column and then click a button with this line of code in it. This brings up the Find prompt box and...
  4. tinymind

    Unexpected Error

    have you tried setting the warnings off (false)? Perfection is Everything If it worked first time we wont be here!
  5. tinymind

    Compare booking dates/times

    Jaydeebe, There is no easy way around this - You may butcher this code as you see fit !! I used this for a booking system. My requirement was to ensure that if any of the previous agreed appointments clashed flag it to the user. I created four small module to test the start time and finish...
  6. tinymind

    Exporting Formulas to Excel

    damn ... I will get it right ... Excel.ActiveCell.Formula = "=blp(""XYZ equity"", ""Long_comp_name"")" Perfection is Everything If it worked first time we wont be here!
  7. tinymind

    Exporting Formulas to Excel

    Correction ... Excel.Range("A1").Select Excel.ActiveCell.Formula = "blp("XYZ equity", "Long_comp_name")" Perfection is Everything If it worked first time we wont be here!
  8. tinymind

    Exporting Formulas to Excel

    Guessing you are using the Excel via access and are coding through access ... Select the cell where you want the formula and enter the type of value you are passing ... EG: Excel.Range("A1").Select Excel.ActiveCell.Formula = ="blp("XYZ equity&quot...
  9. tinymind

    Combo Box and Limit To List

    After the message box .. try ... me.<combo box name>.setfocus Tiny Perfection is Everything If it worked first time we wont be here!
  10. tinymind

    Access 2000 VBA

    Have you tried ... strLocation = qdfstrTemp!Recruitment_Location_Name Tiny Perfection is Everything If it worked first time we wont be here!
  11. tinymind

    Running code from different code libs (mde)

    Hi jphelps This is how I do it! - Create a new module - click on Tools > References This will bring up the References dialog From this select Browse, find the mde file and click on OK Now this MDE file is associated to this database You should now be able to CALL any of the...
  12. tinymind

    Hold the value of a combo box?

    In a module declare a public variable EG Public project_name_str as string When the user has selected a project from the list use this after the on update or on click if you have a button ... me.combobox.value = project_name_str Tiny Perfection is Everything If it worked first time we...
  13. tinymind

    Record Focus in a continuous form

    Try this in the subform after update event ... Private Sub Form_AfterUpdate() DoCmd.GoToRecord acDataForm, , acFirst End Sub Tiny Perfection is Everything If it worked first time we wont be here!
  14. tinymind

    help with using kodak imaging controls

    tweek I also got the images controls to work. View, Zoom, Move several Pages in Tiff docs and all controlled via buttons on an Access97 form ... it does the job .. tweek/vb5prgrmr Just a little note ... If you thinking of using OCR text recognition systems I would recommend Kofax Ascent &...
  15. tinymind

    My date is being saved as a Time

    Try this strsql strsql = &quot;UPDATE tblLogs SET ApprovedDate = #&quot; & Me.txtApprDate1 & &quot;# WHERE LogRef = &quot; & TempRef Tiny Perfection is Everything If it worked first time we wont be here!
  16. tinymind

    Get date and time of file

    Try ... txtversion = &quot;Last Update &quot; & FileDateTime([Forms]![User Details]![txtserverdirectory] & &quot;\global.mdb&quot;) Tiny Perfection is Everything If it worked first time we wont be here!
  17. tinymind

    Close Application

    Apologies ... my stupid mistake ... must read post more carefully ... Perfection is Everything If it worked first time we wont be here!
  18. tinymind

    Close Application

    docmd.quit Tiny Perfection is Everything If it worked first time we wont be here!
  19. tinymind

    I have the following code as part o

    Gimme 5 Minutes and I will get you a working sample that I will email to you ... but I need you email address! Tiny Perfection is Everything If it worked first time we wont be here!
  20. tinymind

    I have the following code as part o

    remove Set before str_answer ... Tiny Perfection is Everything If it worked first time we wont be here!

Part and Inventory Search

Back
Top