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 SkipVought 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: MePenguin
  • Order by date
  1. MePenguin

    Number comparison problem

    Sound advice. Some long nights ahead I suppose. But this is not to be one of them. Thanks, and good night (at least Central European Time) Phil --------------- Pass me the ether.
  2. MePenguin

    Number comparison problem

    Thank's PHV. I think I was just starting to realise that. Could you give me some advice? I've (stupidly) used double data type fields as primary keys in various places - how much trouble am I going to get into by changing these to decimal? I know the scale & precision needed for all my values...
  3. MePenguin

    Number comparison problem

    ... (not only,) but also Val(CDbl(Int(CDec(87.0290060) * 10000000) / 10000000))<87.0290060 = false Val(CDbl(Int(CDec(87.0290070) * 10000000) / 10000000))<87.0290070 = false something to do with MSKB 242933 ? Phil --------------- Pass me the ether.
  4. MePenguin

    Number comparison problem

    Can anybody explain the following for me: CDbl(Int(CDec(87.0290060) * 10000000) / 10000000)<87.0290060 = false BUT CDbl(Int(CDec(87.0290070) * 10000000) / 10000000)<87.0290070 = true I find this totally bizarre, and it's giving me a headache... %-( (Oh, and it seems to be crippling my...
  5. MePenguin

    Error 424 &amp; CreateObject(&quot;Excel.Sheet&quot;)

    A quick update - no file size change on following your decompile tip, Tom. I'll remember the tip anyway, thanks. Phil Phil --------------- Pass me the ether.
  6. MePenguin

    Error 424 &amp; CreateObject(&quot;Excel.Sheet&quot;)

    Thank's Tom, I'll try that, and read the other. MSKB has a reasonable binding explanation too: http://support.microsoft.com/kb/245115/EN-US/ Sounds like it could have been a compatibility issue between versions... although of what, and why it only started recently I have no idea. I blame...
  7. MePenguin

    Error 424 &amp; CreateObject(&quot;Excel.Sheet&quot;)

    Many, many backups in far away places :-) Late binding worked - and I'd love it if you could explain why! Please? It also seems to be a lot faster, so maybe this was all for the best. After all I still have some hair left... I ran a repair install on Office & got my help back just for good...
  8. MePenguin

    Error 424 &amp; CreateObject(&quot;Excel.Sheet&quot;)

    Thanks Tom, I was considering the binding timing, although am reluctant incase there are any cascading consequences - could there be? Or am I jsut generally being too reluctant about everything today? This may be symtomatic of greater Office problems though, since my Office help failed a while...
  9. MePenguin

    Error 424 &amp; CreateObject(&quot;Excel.Sheet&quot;)

    Tom: WinXP Home SP1. (Other test machine is XPHome SP2... the development machine is too critical at the moment for me to risk installing SP2) Phil --------------- Pass me the ether.
  10. MePenguin

    Error 424 &amp; CreateObject(&quot;Excel.Sheet&quot;)

    Steve3110: reasonable question, answer = yes. Haven't tried with Excel in the background - other bits of the routines will not work if Excel is open when run, but I suppose I could circumvent that & try. Tom: WinXP Home, Office 2000DEV. Do you mean that it might have forgotten a library...
  11. MePenguin

    Error 424 &amp; CreateObject(&quot;Excel.Sheet&quot;)

    My app has developed an Error 424 "Object required" on the line marked below, but only on my WinXP Home developing machine: Dim ObjExcel As Object Dim ObjNewSheet As Object Set ObjExcel = CreateObject("Excel.Sheet") '*error here It worked a few weeks ago, and as far as I know I have not...
  12. MePenguin

    Export crosstab with grouping to Excel

    I have a problem getting a report based on a crosstab query to export to Excel in the format my users would like. (They want to click a button from report preview... got the button, but...) The query is created on demand in VBA (columns are dynamic), and the report will be eventually if I can...
  13. MePenguin

    test memo field for multiple keywords from table

    You have missed absolutely nothing, PHV, as always. I, on the other hand, obviously missed that I should have taken a break and come back to the problem later. A clear case of a subconscious desire to make things more complicated than they really are?.. Have star for having your head in the...
  14. MePenguin

    test memo field for multiple keywords from table

    I have two tables: TBiology & tblTempSearchTextBiol tblTempSearchTextBiol contains a single text field which stores user entered keywords, e.g. CriteriaItem water wood TBiology contains about 250K records of extracted text data in a memo field (field:data), with a CODE identifier field (not...
  15. MePenguin

    Reassign shortcut keys Powerpoint 2003?

    Thanks carrr, already read that and thought it wasn't much help, since that would still need several key presses to get to deeply nested commands. BUT by posting it you made me think of a nice workaround, posted here incase it's of any use to people. Even if it isn't particularly clever, it...
  16. MePenguin

    Reassign shortcut keys Powerpoint 2003?

    I've just upgraded to Office2003 from 2000 and, as usual both gained and lost features... the latter really pssses me off... happens every upgrade. Anyway, in 2000 you could assign keyboard shortcuts to macros, and to toolbar/menu items - e.g. CTRL+G to the 'Group' command (in stead of Grid...
  17. MePenguin

    Too many Fields Defined Error 3190

    Thank's for the tip. Useful. Phil --------------- Pass me the ether.
  18. MePenguin

    Too many Fields Defined Error 3190

    Sorry, I missed a bit of background out. It's an Access 2000 database, and the table is local (not linked), created using the transferspreadsheet method - I'll have to post the code this evening (CET). You're right Jim, I need the 'or' (sorry Abdulla). The systax works fine up to about 70...
  19. MePenguin

    Too many Fields Defined Error 3190

    Can anybody tell me why I'm getting this in the following code when the number of fields is greater than about 70? For Each fld In rs.Fields If fld.name <> "CODE" And fld.name <> "Species Name" Then SQLText = "ALTER TABLE BugsCountsheet ALTER COLUMN [" & fld.name & "] long;"...
  20. MePenguin

    Set size of application window?

    Could you post the solution please? Phil Phil --------------- Pass me the ether.

Part and Inventory Search

Back
Top