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!

Search results for query: *

  • Users: BFreshour
  • Content: Threads
  • Order by date
  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...

    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...
  3. 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...
  4. 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...
  5. 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...
  6. BFreshour

    Failed connection message won't display...

    What is wrong with the following code? When I have the database up, it connects and loads the page. However when the database is down, instead of displaying the die message; it shows a blank HTML page. if (!($db = @ mysql_connect($dbhost, $dbuname, $dbpass))) die("MySQL Server appears...
  7. BFreshour

    Update Query w/ write access to only one table

    I have a linked table that I'd like to pull data from and place into a local table. I only have view rights on the linked table. I tried multiple times to create a Update query which would pull the data off the linked table and place it into the local table. I was never successful, each time...
  8. BFreshour

    Group By seperated by page...

    Is there anyway to make a report seperate the 'Group By' categories into different pages? For example: Instead of... User1 5 User1 10 User1 15 User2 7 User2 10 User2 50 all on one page, we would insert a page break after the last User1 so that each Group started a new page.
  9. BFreshour

    Converting 97 - 2002 module (accessing table)

    I'm trying to convert an Access 97 database over to Access 2002. It keeps hanging in a module at the following section with "Can't find project or library" error. I believe the format being used to access the table data is incorrect but I can't figure out what I need to do to fix it...
  10. BFreshour

    Open without saving Level 2....

    My bosses are on my case and I need a fix, if one is available. We've upgraded to Office XP and I used the Level1Remove registry fix to allow them access to certain files. However, .xls files require that they 'Save to disk' before they can 'Open' them. This is a huge annoyance for them. If...
  11. BFreshour

    Comparing dates without time...

    I give up. Maybe I'm just stupid but I can't figure out how to get my database to compare two datetime fields without taking in account the time that's attached to them. For example, I have an activation period and when stored in the database it keeps the time. It would look something like...
  12. BFreshour

    Forum Coding - Replacing Single Break

    I currently have a forum written in ColdFusion using a SQL 2000 database. I'm storing the post as 'Text' with a length of 16. Whenever display the post back to the user I'm using #ParagraphFormat(PostBody)# which works great. However if the user enters information such as: 1 2 3 4 The post...
  13. BFreshour

    403.9 errors...

    Running Windows 2k Pro with IIS 5.0. My website gets quite a few hits, and the IIS is telling me I can have a max of 10 connections (hard-coded). My users keep repeatedly getting 403.9 errors. Is there anything I can do to help fix this problem? Is there anyway to change the number of...
  14. BFreshour

    Database FCB Error

    A database on one of my servers went suspect and upon restarting the service vanished from the database list. When trying to reattach the database I receive the error Error 5180: Could not open FCB for invalid file ID 119 in database 'mydb'; Is there a way to fix this in the MDF? Can I...
  15. BFreshour

    Suspect database dropped...

    Database went suspect, restarted the SQL service, now it's not there. I've tried to re-attach it and it gives me an error, of course. The backup is old, so all I have is the MDF file that wasn't detached. Is there anyway to get my data back?
  16. BFreshour

    Locking down system...

    I have a Windows 2k Pro that is going to be stuck out with a group of minions and other nasty creatures. I want to 'lock it down' so the only thing they can access is internet explorer. I'd also like it so that they could only access one site in internet explorer, but that's probably too much...
  17. BFreshour

    output to stdout

    Does anyone know how to output to stdout using VB? And no, I don't want to spawn a new console (i.e. use AllocConsole method of the WScript object). I want to use the originating command console that I ran my executable from. And no, I don't want to write the program in C++. Also, I'm not using...
  18. BFreshour

    Ending a function...

    If I'm testing the value of my form with the following javascript, it pops up messages for each field that has no data. I would like it to exit the function IF the value is false which would only allow a max of one messagebox. Make sense? function validate() { LCv=login.ClientID.value; if...
  19. BFreshour

    CFSelect Required attribute....

    What am I doing wrong here? I thought since the first option had no value that they wouldn't be able to submit the form if it was selected, however, they can... Any tips? <cfselect name=&quot;ClientID&quot; required=&quot;yes&quot; message=&quot;You must select your company!&quot;>...
  20. BFreshour

    Advanced Application Variable Help...

    I'm building application variables dynamically like this: <cfset applicationVariable = &quot;application.&quot; & #Left(Replace(Trim(SetClientVars.ClientName), &quot; &quot;, &quot;&quot;, &quot;All&quot;), 5)# & #SetClientVars.ClientID#> <cfset tempQuery = queryNew(&quot;DSN&quot;) <cfset...

Part and Inventory Search

Back
Top