Search results

  1. M

    copy/past values on an Excel workbook

    Is there a way to delete the second worksheet from a workbook?? Thanks beforehand
  2. M

    Updata Data in unbound field

    I want to see the data in an unbound calculated field change after I've changed the value in one of the calculations. How can I do this??
  3. M

    copy/past values on an Excel workbook

    I have data copied to an excel workbook. In the book I do some pasting of values. These are copied by formulas in another sheet. To get rid of the calculations I want to copy and Past the values on the same sheet. That's where things go wrong. Set sht = excelApp.ActiveWorkbook.Sheets(1)...
  4. M

    Language Translation Selection

    I'll prepare a small database as example
  5. M

    Language Translation Selection

    Hi, On an invoice I have a selection field Language referencing a table with Languages. I store the LanguadgeId in the field. While making the Query to print the Invoice I need to select the Select the The Invoice description from a table that has the translations in the fields. How do I...
  6. M

    error 3061 to few parameters

    I've been keeping on trying and found the lower one did work fine. Meaning the principle works. This also means there most be an error in the query mentioned above. Thanks very much for all the help. strSQL1 = "SELECT tblOrder.OrderId, tblOrder.OrderPrint " & _ "FROM tblOrder " & _ "WHERE...
  7. M

    Browse [Find a directory or file]

    I've decided to use this code: This gives you the ability to create a directory select is. Works fine for me! 'http://www.microsoft.com/technet/scriptcenter/resources/qanda/jun05/hey0617.mspx 'You must set a reference to the Microsoft Scripting Runtime 'to use the BrowseFolder_Scripting()...
  8. M

    error 3061 to few parameters

    Yep, I'm going to bypass all with a "Print Report" filed on the main table and add this to my query. That way I can determine what report I'd like to print at any time. Thanks all for the input, it's really appreciated!!
  9. M

    error 3061 to few parameters

    I'm 100% sure the tempvars is set and available the moment the query is made. Do you have a working example with tempvars in the query request?
  10. M

    error 3061 to few parameters

    Dim lgOrderId As Long Dim strCurrentPath As String Dim strFullCurPathFile As String Dim strCurrentOrderDet As String Dim strValue As String Dim test As String Dim strSQL1 As String Dim intLenstr As Integer StartUp [TempVars]![temporderid] = Me!OrderId.Value strFileName = Me!CAEJobNumber.Value...
  11. M

    error 3061 to few parameters

    no change unfortunately
  12. M

    error 3061 to few parameters

    Then it works fine!! Problem is I need to parse the value before running to transfer to excel, otherwise I get all records and heve to split. As you can see the query is not just a simple one, so writing the sql as string runs into problems with length and parts, so I prefer the Tempvars. If...
  13. M

    error 3061 to few parameters

    it provides: >>> 6 as my answer. (That's what I'm looking for!!)
  14. M

    error 3061 to few parameters

    Sorry, Same error!
  15. M

    error 3061 to few parameters

    I get the erro Object variable or block variable With not set??
  16. M

    error 3061 to few parameters

    Running the following recordset generates an error 3061, to few parameters. When I run the Query by inself it does run and generates the required single opject I'm looking for. What do I need to do to solve this one?The problem is in the Where clause with the TempVars. If I delete that, it runs...
  17. M

    Browse [Find a directory or file]

    This is it!! perfect and the point Thanks!!
  18. M

    Browse [Find a directory or file]

    Your're right again! This one works great, to find files and create directories, but it doen not let you SELECT a directory, it only let's you select files. I need to select Directories to put my files in. Did I miss something??
  19. M

    Browse [Find a directory or file]

    Hi, It comes back with an error on line: Dim fDialog As Office.FileDialog type is not defined
  20. M

    Operator missing

    This worked. Thnks very much for the effort!
Back
Top Bottom