Search results

  1. Robert88

    Change Tick?

    Hi All, Wondering if this is possible? Attached is a subform snapshot that I am currently using. Instead of a tick for each field from the table I was wondering if a "X" can be displayed instead of a tick? This form is from a table that has a "Yes/No" field for each number. Part of a...
  2. Robert88

    Group Membership...........

    Hi All, Does anyone here know how ot access the "Group Memebership" of your profile? Robert88
  3. Robert88

    Tattslotto number Checker

    Hi All, I have a database which contains all historical draws from our Tattslotto system here in Australia. I want to get some comments on the best way to tackle checking two tables as listed below. tblDrawn_No 'This is the table with drawn tattslotto numbers so only one row per draw...
  4. Robert88

    Reading dat file from CD

    Hi All, Another challenge to my life, reading a dat file from CD. I have looked at other posts on reading .dat files and it is clear that to import a dat file is not possible through the import of files.:eek: I have a standard file which for the purpose of the exercise I will call test.dat...
  5. Robert88

    Updating Combo box defaults with Optionbox and/or Check box for a Table

    Hi All, I am wondering if it is possible using VBA to update using either an option group or check boxes as shown in the frmDefaultValue in the attached file to update two tables tblLabelNumber and tblMediaType. The form frmMedia contains two combo boxes. I am trying to use the form...
  6. Robert88

    Transferring form data to table?

    Hi All, I need help getting data from a group of unbound fields on a form to a table. Is this possible? Hopefully with VBA. Example of fields on form - frmLabel1Data txtClientName txtProjectNumber txtTypeofMedia txtPath1Files txtFile1NameFrom Example of fields in table - tblCDLabels...
  7. Robert88

    First record in table to appear in unbound text field on Form?

    Hi All, I hope someone can help me. I have a table here tblTemp with a field client. This table can have from 1 to 100 records at times as it keeps getting cleared for the purpose of this exercise. I also have a form frmLabel1Data with an unbound text box txtclient. I was hoping to get the...
  8. Robert88

    Default Values in tables using validation rules..........

    Hi All, I have four tables that are part of a CD Labelling Database. They are used like a list to set default values within my database and all tables are not within any relationship. These tables and structure are; tblLabelNumber fldLabelNumber - Text fldDefaultLabelnumber - Yes/No...
  9. Robert88

    Importing Fox Pro Database to Access....

    Hi All, If anyone can help I would appreciate it. I have scanned the internet and this site to not much avail...... But however I did stumble across this code in another site which contains the following code; Private Sub CmdReadDBF_Click() DoCmd.TransferDatabase acImport, "ODBC", _...
  10. Robert88

    Print Preview on a Form????

    Hi All, I have never done this and not sure if it is possible but thought I would ask. Is it possible to show within a window maybe, a print preview of a report on a Form? I am going to assume that the answer is no? But I could be wrong? Look forward to anyones input on this one.:p Robert88
  11. Robert88

    Default combo box based on default table value

    Hi Everyone, I hope someone can help. I have a form with a combo boxes and a table with relevant list and additional field, fldDefaultDrive (Yes/No Field). Currently in order to set the default value, I have used the following code for each default; Private Sub Form_Load()...
  12. Robert88

    importing folder path and filename info into table???

    Hi All, I am hoping soemone can help me? I have code which will allow me to access files and folders form a folder with various files and folders within it @ "C:\CD Data", eventually I will change the path to read a CD but temporarily the information is on my hard disk. The code below sends...
  13. Robert88

    mso code????

    mso commands??? Hi All, Recently I asked about finding information from folders or in my case a CD. http://www.access-programmers.co.uk/forums/showthread.php?p=415218#post415218 Thanks to GHudson I managed to download the file attached in his comments, which I noticed has lost it link but...
  14. Robert88

    Merging Date and Time, is this possible????

    To anyone that can help? Not sure if it is possible? I have managed to successfully import into a table non-delimeted data as seen in the link http://www.access-programmers.co.uk/forums/showthread.php?t=96996 the data went into fldDate(Datatype: Date), fldHours(Datatype Text) & fldMins...
  15. Robert88

    VBA Problem with Transfer text, Help anyone?

    I have been trying to import a txt file into a table. Doing it manually with import, using the Door Fob import specification and importing it into tblDoorFob table it is successful. I have written VBA for a button on a form frmReadDoorFob. Private Sub CmdReadFile_Click()...
  16. Robert88

    Transfer Text with a non delimited text file??

    I have created a button on a form in order to transfer text into a table tblPlanetarySystems from a file PlanetarySystems.txt. the code is as follows Private Sub CmdReadFile_Click() DoCmd.TransferText acImportDelim, , "tblPlanetarySystems", "C:\Planet\PlanetarySystems.txt", True End...
  17. Robert88

    Reading File Structure from a CD ????

    I was wondering if it is possible to be able to read a CD directory structure in as maybe a variable and ultimately reading it into a field in a table? If it is possible would more than likely chop and cut directory path up into smaller bits as the paths have a fixed length and each...
  18. Robert88

    Combo Box with variable default...........

    :confused: I was wondering if somebody can help with my default combo box problem? I have a secured database whereby users logon, which is used as a scratch pad for keeping track of Purchase orders. A Form frmUserInput with two relevant fields for this problem 1. User Initials txtUsersInitials...
  19. Robert88

    Writing Form data to two tables

    :confused: I have been searching to the point now where I am now scratching my head, I hope someone can help....... I have a form(frmDailyBoatCatch) that contains information on daily boat catches (as I am a member of a fishing club). Currently the info from each boat is placed on the form...
Top Bottom