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. scottian

    Exporting to Excel

    Access does it automatically. DoCmd.TransferSpreadsheet acExport, 8, "MyStoreQry", "C:\My_Database\Store Data", True, "Store Number 1" That above will create an excel file with a tab called "Store Number 1". If you run another query (e.g named "Store Number 2") it will create a new tab in the...
  2. scottian

    is like

    Thanks Skip, ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  3. scottian

    is like

    is it possible to compare part of a variable? i.e a = "question" b = "my question" If a is like b Then msgbox "Yes You Can Compare" End If ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  4. scottian

    Info Box

    is it possible to start a macro, have an info box pop up but have the macro thats runing to continue to run? ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  5. scottian

    quit paint application

    is there a way to quit MS Office Paint app using a button in access? ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  6. scottian

    Using 'FollowHyperlink

    When i try to navigate to a jpg file in explorer and choose to open it i get the error :- access to the resource 'yada yada yada' has been disallowed ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  7. scottian

    Using 'FollowHyperlink

    I apologise. I was just trying to keep my post tidy, but i made a mess of it. Here is the code :- Dim varList Dim varItem varList = Me.ListFiles.ListIndex varItem = Me.ListFiles.ItemData(varList) Application.FollowHyperlink (Dir$(z() & "\Pictures\" & varItem)) That will work if im trying to...
  8. scottian

    Using 'FollowHyperlink

    I have a form in a database, on the form is a list box. I click a button and the list box fills with all the file names in a folder. The next step is to select a file from the list and open it. im using the 'FollowHyperlink' method for this. This works:- Application.FollowHyperlink...
  9. scottian

    Date Formats

    Im trying to retrieve dates from a system using Attachmate. The date is displayed on the screen as "12/11/09" its copied to a variable and then pasted into a cell in excel. The problem i have is when the date is in the first 9 days of the month, e.g. "09/11/09". For some odd reason the date is...
  10. scottian

    The trouble with updates

    Sorry, the error pointed towards this line strSQL = "SELECT * FROM Table1 WHERE index is null" ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  11. scottian

    The trouble with updates

    ...[FBR] " & _ "FROM tblMain LEFT JOIN [qryAccGroup] " & _ "ON tblMain.[FBR] = qryAccGroup.[FullReference] " & _ "WHERE (tblMain.[STATUS] Like 'pen*') AND (qryAccGroup.[FullReference] Is Null);" Set ThisDB = CurrentDb() Set WMFRecSet = ThisDB.OpenRecordset(strSQL, dbOpenDynaset) Do Until...
  12. scottian

    Why won't my code for importing an Excel file work??

    This works for me DoCmd.TransferSpreadsheet acImport, 8, "tblTABLE_NAME","C:\Untitled\MyFile.xls", True ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  13. scottian

    To uninstall software from mac

    Check the internet for an app called AppZap ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  14. scottian

    Debugger References

    Sorry about the vagueness of my post. The debug window opens without a problem. The action im trying to do worked in the past without a problem. But the base unit was changed, now it doesnt work. I dont get any error message, nothing happens. But I remember a few years ago having a problem and...
  15. scottian

    Debugger References

    For years now ive used the debug window without any problems, but recently it stopped working (my base unit was changed). I was pulling my hair out for a couple of days but i suddenly remembered about the reference tools. I think im on the right track but not certain. Can anyone tell me if im...
  16. scottian

    is like, partial match

    how would i check a string variable for a prtial match? ------------------------------------------------------------------------------ Ambition..........If you dont use it, you wont lose it
  17. scottian

    write into a field on a web page

    Please someone help. I want a macro to write into a field on a web page. The page is a login page with two fields; Username and Password. But it wont put the username or password into the page fields. Sub Main dim objIE as Object, objApp as Object Set objApp =...
  18. scottian

    import an access query into a recordset

    I have a macro that imports an access table into a recordset. It works great, but id prefer if i could use one of the queries instead. When i set the recordset variable to the name of the query i get an error :- Microsoft JET Database Engine: Invalid SQL statement; expected...
  19. scottian

    Attachmate updating Access table

    CautionMP, Thanks for the reply, I didnt know about the rs.Update Ambition..........If you dont use it, you wont lose it
  20. scottian

    Write data to Access

    I managed to solve it, so i thought Id put my solution here for others. Global g_HostSettleTime% Sub Main() '''Declare Variables Dim Sys As Object Dim Sess As Object Dim Conn As Object Dim RS As Object Dim D_Base As String '''Set Objects And Sessions Set Sys = CreateObject("Extra.System")...

Part and Inventory Search

Back
Top