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: *

  • Users: Tadynn
  • Order by date
  1. Tadynn

    Create office equipment map form

    Hi all, I've had this brilliant idea to create a map of our offices and be able to graphically map the locations of all our office equipment, connections, peripherals as well as other information such as ip addresses and a comment if the equipment is down. So far I've created a form and...
  2. Tadynn

    Control created excel workbook using access VBA

    ...DoCmd.SetWarnings False DoCmd.RunSQL A DoCmd.RunSQL B DoCmd.OutputTo acTable, "tmp_ItemsAwaitingDispatch", "MicrosoftExcel(*.xls)", ExpPath & "SOH_Inventory.xls", True, "" DoCmd.OutputTo acTable, "tmp_ItemsDispatchedToday", "MicrosoftExcel(*.xls)", ExpPath & "Dispatched_today.xls"...
  3. Tadynn

    Control created excel workbook using access VBA

    ..." & _ "ORDER BY tbl_RMADetails.Part" DoCmd.SetWarnings False DoCmd.RunSQL A DoCmd.OutputTo acTable, "tmp_DailyItemsDisp", "MicrosoftExcel(*.xls)", "", True, "" DoCmd.SetWarnings True Step two, once the file is created. Is to run a macro in that I've created in excel to format the...
  4. Tadynn

    Export from access and format in excel

    ...Else 'Create the table DoCmd.RunSQL MakeTbl 'Output the data into Excel DoCmd.OutputTo acTable, "tmp_ItemsScanned", "MicrosoftExcel(*.xls)", "C:\Documents And Settings\tadynn\Desktop\Items scanned from " & Format([Forms]![frm_SearchTotal]![FromDate], "yyyy-mm-dd") & " - " &...
  5. Tadynn

    Check if required fields are empty on form

    Hi all, Using access 2k I have a form that is called "frm_Receipt", this form is set to data entry mode, and it's data source is a table called "tbl_RMADetails". Out of the 5 text boxes and two buttons on this form, two of the text fields ("serial" and "part") are required fields. To control...
  6. Tadynn

    Linking Number Value from Check Boxes to Text Value in Table

    ...the frame that surrounds all the controls. Add to this a textbox that the query looks at to get it's parameters for the field 'Tier' i.e(SELECT * from [YourTable] WHERE [YourTable].Tier = Forms![YourForm]![YourTextField] Or IsNull(Forms![YourForm]![YourTextField]);. Then insert an...
  7. Tadynn

    Problem writing mutliple copies of recordset to text file

    ...to go with this a bit further........ My output file is coming out like this (I've taken out the carriage returns to get rid of the spaces). "*FORMAT, " "ProperShippingName, " "UN_No, " "*PRINTERNAME, " "*PRINTLABEL" "*FORMAT, " "ProperShippingName, " "UN_No, " "*PRINTERNAME, "...
  8. Tadynn

    Problem writing mutliple copies of recordset to text file

    ...String Path = Me.TextFileName.Value For i = 1 To NoOfLabels hFileHandle = FreeFile Open Path For Output As #hFileHandle Write #hFileHandle, "*FORMAT, " & LabelName & vbCrLf Write #hFileHandle, "ProperShippingName, " & Me.ProperShippingName.Value & vbCrLf Write #hFileHandle...
  9. Tadynn

    How much can you customize a toolbar?

    Hi all, Access 2K Just wondering how far one can go to customize a toolbar in access. I want to create a toolbar with bigger buttons than access appears to provide and also to insert my own graphics as the ones that are provided - even though can be edited - are not really suited for the type...
  10. Tadynn

    Change report orientation through Access VBA

    Hi all, Using access 2K This I assume is a fairly simple one (except for me that is). My report that I run, ocassionally resets the page setup values that I have assigned it through page setup. I thought that a good way to fix this would be to assign the page setup values through code as part...
  11. Tadynn

    Create relationship for table created on the fly

    Hi Willir Thanks for your input. I've actually just tried another way of doing it and it worked. What I did was I created another main and subform with the relationship intact and then deleted the relationship in the relationship window. Because I created the forms while the relationship was...
  12. Tadynn

    Create table with autonumber field through vb

    Hi, Disregard, I've figured it out
  13. Tadynn

    Create relationship for table created on the fly

    Hi all, Access 2K I've written the sub below to create a temporary table when I open a form. Although I create the table okay, I haven't figure out how to also programatically create a one to many relationship from a permanent table (tbl_Manifest) to this temp table (tmp_ManifestDetail). I...
  14. Tadynn

    Create table with autonumber field through vb

    Hi all, I want to create a table that will have a structure (field names), but will contain no data. One of the fields I need to be an autonumber field formatted as "00000". Below is a list of the fields that the table needs to contain: TABLENAME tmp_ManifestDetail FIELDNAME DATATYPE...
  15. Tadynn

    Get Last modified date on folder through Access VBA

    Hi PHV Excuse my arrogance, I've written it in like this and obviously it's wrong. Private Sub Form_Load() Me.Var.Value = FileDateTime("c:\Testing\") End Sub var is the name of my text box that I would like to display the timestamp in. Can you please tell me the correct way to use the...
  16. Tadynn

    Get Last modified date on folder through Access VBA

    Hi all, Does anyone know how to create a form within access 2k that will show me the last modified date on a folder? Let's say that my folder is called: c:\Testing Thanks in advance, Tadynn
  17. Tadynn

    Query must contain at least one table or query

    Apologise for taking so long with a reply. Had internet troubles..... Tony Jollans, that was exactly what it was. After I added a space or two the query worked fine. So thanks for that. Gold star for you Rgrds, Tadynn
  18. Tadynn

    Query must contain at least one table or query

    TonyJollans/Golom I removed the spaces and even copied the code into a sql query and all appear to run okay. I even removed all the spaces but still nothing. Golom, Steps 4 through to 9 even though they appear the same are actually different. The criteria is set by the area name. So step 3...
  19. Tadynn

    Query must contain at least one table or query

    Hi all, Access 2K I'm having problems with a piece of code that I wrote to create two tables and append data to those tables once created. The problem appears to be when the code runs to steps 3 and 4 (see below) step 3 makes a table and inserts data and step 4 appends more data to the newly...

Part and Inventory Search

Back
Top