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 bkrike 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 BobK4UVT

  1. BobK4UVT

    Reading Regional settings from system

    Thank you very much, PHV! I'll give it a try and see how it works. I have several test cases in mind to be sure I can retrieve the info I need. Will let you know how it goes.....
  2. BobK4UVT

    Reading Regional settings from system

    I need to develop a function that will tell me what regional setting the PC is set to - and if possible the default date/time formats for that setting; i.e., English (United States) or German (Germany), etc. I expect it will require a system API call to do so. Can anyone suggest how I might...
  3. BobK4UVT

    Can I format an Excel spreadsheet from Access?

    Reinier, Works like a charm!! Recorded the macro first & tweake it a little. I notice the generated code from the macro does an awful lot of ActiveWindow.ScrollRow = xxx. I'm curious why, so I'll have to dig into the Excel API a bit more to understand what it is doing. At the end of my sub...
  4. BobK4UVT

    Can I format an Excel spreadsheet from Access?

    Wow!! That was a quick reply!! Thanks for the tip! I'll play with it and then let you know how it went. I had planned to record a macro in Excel & use that as a baseline. Bob
  5. BobK4UVT

    Can I format an Excel spreadsheet from Access?

    My client likes to have their "reports" exported as Excel spreadsheets. I do the analysis in Access and then export the table to Excel. The resulting spreadsheet needs to have some formatting done on it before the client receives it. Fairly simple stuff --- Things like centering and/or...
  6. BobK4UVT

    Hyperlink datatype for AS Web forms???

    PS ..... will also get into Metalink & see what Ifind there.....
  7. BobK4UVT

    Hyperlink datatype for AS Web forms???

    Mufasa, Well, it is primarily an HTML limitation. I'm just trying to find a clean way to do it without leaving extraneous form elements on the form to confuse the user. It's messy, but may be my only choice. Actually < 1% of the records in the current Access DB even use this feature. So I'm...
  8. BobK4UVT

    Hyperlink datatype for AS Web forms???

    I am building a web-based app with 10g AS (via PL/SQL packages) and am trying to mimic the MS Access hyperlink datatype. Specifically, I need to implement a <input type="file"...> functionality on a web form and plop a followable hyperlink in that text box. Thus far I have not succeeded & the...
  9. BobK4UVT

    Scanning for bad hyperlinks in Favorites folder

    OOppsss ... sorry about that .... Clear RecSet is one of my functions too. Code be low .... Maybe not the best way, but it works OK if the recordset is not too large. I like to ensure all the old records are gone before I start doing AddNew. Hope this helps..... Code for function: Public...
  10. BobK4UVT

    Scanning for bad hyperlinks in Favorites folder

    Hi, Aqif, Thanks for your reply! Since my original post, I discovered that the code was failing to pick up over half of the links that were actually in my Favorites folder. Upon further tinkering, I finally arrived at a good solution. The key is the function GetURLFromShortcut() ---- that...
  11. BobK4UVT

    Scanning for bad hyperlinks in Favorites folder

    PH ------- That helped out great!!! Now I see the shortcut files as .url files. Now all I need to do is figure out how to follow the links best. The FollowHyperlink method opens the link in a window --- with 1500+ links, that could swamp me, so got to find a way to do that without a glut of...
  12. BobK4UVT

    Scanning for bad hyperlinks in Favorites folder

    Hmmmmmmmmm ....... upon further tinkering, it looks like maybe FileSearch doesn't recognize internet shortcuts. So how does one handle that?? Am I perhaps barking up the wrong tree?
  13. BobK4UVT

    Scanning for bad hyperlinks in Favorites folder

    PH --- sorry for omitting the code --- too sleepy I guess :=) Public Sub ScanFav() Dim Jdx As Long Dim NumFiles As Long Dim DirName As String Dim FullFileName As String DirName = "C:\Documents and Settings\Daniel R. Dorsey Jr\Favorites\" With...
  14. BobK4UVT

    Scanning for bad hyperlinks in Favorites folder

    I have a bunch of hyperlinks in the Favorites folder in C"\Documents and Settings\. Via VBA, I would like to scan thru all the links and have it shell out to the link to test it. If the link is no good (dead, broken, 404, etc.), I'd like to populate a table with the bad URLs. That way I can...
  15. BobK4UVT

    Clean Install of XP Pro

    Clean install seems to have gone well. Did &quot;quick&quot; format on drive. OS install took just under an hour. It found all hardware except for sound card, but was able to get an XP driver for it from mfr web site. So far I really like XP!!! I think I'll really enjoy it & it will be good...

Part and Inventory Search

Back
Top