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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by paoconnell

  1. paoconnell

    WRT54G Serving Up Bad IP Address

    Syquest Have you tried bypassing the router entirely? If the laptop connects correctly, there may be a conflict between your router and Safeboot (this is apparently a VPN and encryption utility) or the Active Directory settings added to your laptop (which I assume is a company machine). Ask...
  2. paoconnell

    Declare a large arary!

    What is the reason you're trying to create such a large array? There are other ways to work with large arrays other than in an array that would be too large for available memory. For instance, you could implement a sparse array (look at a data structures book) and put the array elements in a...
  3. paoconnell

    Why do you code in Fortran?

    Random number generators are all too often thrown into a compiler as an afterthought. There are a number of algorithms that work better (and are more random) than the ones that originally came with the compiler. Do a bit of research (start with Knuth's Seminumerical Algorithms, but there are...
  4. paoconnell

    compare two data list

    Some questions: Are x, y, and z arrays or scalars? Are xx, yy, and zz deeclared the same way as x, y, and z? Show the declarations also, as well as the compare code ArkM asked you for. Pat
  5. paoconnell

    Parallel Fortran

    With a multiprocessor machine, you should be writing the code in vector notation [like A(B:X,C:Y), for instance]wherever possible. This was certainly true of the Crays (I took a class years ago) and should also be true of more modern architectures. If your computer has a compiler designed to...
  6. paoconnell

    Sound stutters

    My PC is a 4 year old Toshiba laptop, with a Pentium 4 and a built in sound chip set. The chip set is soldered to the motherboard, and is not replaceable. The stuttering only started about three months ago, probably around the time iTunes was updated to support the iPhone. I assume the "Apple...
  7. paoconnell

    Sound stutters

    I have had a similar problem with stuttering video and audio on my Windows XP Home PC. It turned out to be a service installed by iTunes called "Apple Mobile Device." Disabling this service (which is needed only if you have an iPhone) made the stuttering go away. Note that my PC has a basic...
  8. paoconnell

    Data entered in a table behind a Subform doesn't display

    PHV: this is the right direction. In a VB module, this seems to work best: DoEvents Forms![folder form]![Child20].Form.Refresh 'Me![Child20].Form.Requery 'your suggestion,changed to: Forms![folder form]![Child20].Form.Requery DoEvents Pat O'Connell
  9. paoconnell

    Data entered in a table behind a Subform doesn't display

    Just played with Refresh again. 'Print Ops Logs is the form with the subform 'in question: '!!!Requery doesn't seem to work until the subform is 'clicked on: Forms("Print Ops Logs 2").Requery '!!!Refresh does work without clicking on the 'subform, but redraws...
  10. paoconnell

    Data entered in a table behind a Subform doesn't display

    There is no main form record in this case, just the temporary records saved in the table behind the subform. The table is used to create a number of reports for printing, then the subform table is cleared. Pat O'Connell
  11. paoconnell

    Data entered in a table behind a Subform doesn't display

    Strangely enough, no; I tried a requery and a refresh. The refresh code's still there, but doesn't help. I'm suspecting that some property of the subform or the underlying table is not right. Data goes right into the table, but doesn't appear in the subform until I click on the subform. Very...
  12. paoconnell

    Data entered in a table behind a Subform doesn't display

    I'm maintaining a Access 2003 application that has two forms. Each form uses a combo box (shipment prefix) and a text box (numeric identifier) which are then concatenated to create a shipment ID. An Add button puts the shipment ID into the table behind a subform on the same form. The table is...
  13. paoconnell

    Getting connected to a database from vb3

    There is a data control in VB3; look on your Toolbar. However... For most work, you'll need to connect to your database using ODBC and DAO. Furthermore, the 16 bit ODBC can't connect to newer databases, so you might need to migrate to VB 5 or 6. Pat O'Connell Visualize Whirled Peas
  14. paoconnell

    sweep.exe replacement?

    Well, that's a del feature I didn't know about--helpful! Recursing del is a part of the solution, but the rest of the functionality would help too. Anyone else? Pat O'Connell Visualize Whirled Peas
  15. paoconnell

    sweep.exe replacement?

    Wayyyy back in the mists of time (early 90s) DOS and Windows 3.x ran in 16 bit space. In those days, there was a program called sweep.exe that would start in the current directory and execute a DOS command (with arguments) on that directory and all of its subdirectory tree, e.g. sweep del *.bak...

Part and Inventory Search

Back
Top