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 TouchToneTommy 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 BFreshour

  1. BFreshour

    xml_parse hanging local server

    I have a local PHP server running on Apache 2.0.50 on Windows 2000. I'm running PHP version 4.3.9. I'm attempting to parse some data using an XML parser class, but it is hanging while parsing the data. The data is pulled from a URL and then sent to the parser. The parse works fine on my web...
  2. BFreshour

    Setting a ControlSource with a prompt or query...

    Awesome! That's EXACTLY what I needed.
  3. BFreshour

    Setting a ControlSource with a prompt or query...

    This is a distributed application. I will try an INI file and see if that works... Thanks.
  4. BFreshour

    Setting a ControlSource with a prompt or query...

    ... Because I'm trying to save that ControlSource so that the user doesn't have to keep entering it everytime they open the form...
  5. BFreshour

    Updating Multiple tables through one form

    I might be wrong, but I think it order to do that you need to base it off a query that links all those tables together, or create subforms, one for each table...
  6. BFreshour

    Setting a ControlSource with a prompt or query...

    I have an Access form and I'm trying to set a ControlSource for an unbound textbox either from prompting the user (just one time) or by querying a table for the information. I used an OnLoad code that would test to see if txtTeamAbbv.ControlSource = "", if it did it would send an inputbox to...
  7. BFreshour

    Unknown DB type...

    I've replaced the test.zip on my website with another database file from the program. It ends in .db and is quite a bit bigger... Maybe someone can identify it. I'm pulling my hair out. It doesn't appear to be a paradox db file...
  8. BFreshour

    Unknown DB type...

    Steve, did you identify the datbase by the extension or my looking at the file? I have tried every Xbase utility and ODBC driver around and still can't get the data. I know that DBT is a text/memo file for some databases. I was just wondering if that alone is how you identified it. I think...
  9. BFreshour

    Unknown DB type...

    One more question, how sure are you that it's an Xbase database. I found a utility to convert Xbase to mySQL and it's giving me the following error: Error SIXCDX/1012 Corruption detected Thanks again, Brad
  10. BFreshour

    Unknown DB type...

    Do you have any idea where I can get an Xbase ODBC driver? I tried a quick Google search with no immediate results. Thanks for identifying the database for me. Brad
  11. BFreshour

    Unknown DB type...

    I know this is some sort of database, but I can't for the life of me figure out what type it is. It may be proprietary. If that's the case, please let me know if you think there is a way to write a program to read and modify it. I've zipped up the file on my website and you can download it...
  12. BFreshour

    Excel Auto Date Conversion

    I'm doing more than one cell at a time... Any other solutions?
  13. BFreshour

    Excel Auto Date Conversion

    I'm copying text from a web page into an excel spreadsheet. Certain fields [like team records (1-1-0)] get transformed into a date (01/01/2000). Is there anyway to keep Excel from doing that? I'm unable to paste the text (Paste Special) as anything other than HTML or the column formatting...
  14. BFreshour

    Building Hyperlink from Cell Text...

    I ended up using the following macro code and ran it on every cell I needed: Dim link As String With ActiveCell(1) link = "http://www.yadda.com/index.asp?Member=" & ActiveCell(1).Offset(-1, 0).Value & "&Sport=NCAAF" .Hyperlinks.Add .Range("A1")...
  15. BFreshour

    Building Hyperlink from Cell Text...

    Trying to build a hyperlink using the text in a cell. For instance: A4 = JoeBlow So in cell A5, I have the following: =CONCATENATE("http://www.yadda.com/index.asp?user=",A4,"&login=1") This just creates a text cell with...

Part and Inventory Search

Back
Top