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 gkittelson 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: *

  1. bodington

    Access rolls back changes seemily Randomly???

    Thanks lameid :) I'll check into the Fred and Sam scenerio. It's unlikely between these two but come to think of it, Sam has lost some weight recently :) My network admin is out today, so I'll have to talk to her tomorrow about the roaming profile. We are in a windows network environment. I...
  2. bodington

    Access rolls back changes seemily Randomly???

    Well, we develop in a seperate copy with local tables and a strong password. Then, before deployment, we copy to a new location and change the name. Delete the static tables and link to our sql server tables. Change the password and copy to a network folder. We have a logon script that is user...
  3. bodington

    Access rolls back changes seemily Randomly???

    I'm pulling my hair out with a bizarre problem. Any insight would be very appreciated! We are running Access 2003 on an XP machine - in a network environment. When the developer is working on the local machine, unplugged from the network, everything works fine. When he logs into the network...
  4. bodington

    10 Keypad Typing Letters??

    Ok, thank you. I think maybe it is the javascript that creates input masks. Thanks for helping me narrow down the problem. I'll post a new question in the javascript forum. Thanks again.
  5. bodington

    10 Keypad Typing Letters??

    I have tried on both a notebook and a PC. The numberlock is definitely on. I had 2 other users try it to make sure that I wasn't crazy! But instead of numbers, it is always letters. Any ideas?
  6. bodington

    10 Keypad Typing Letters??

    I made a web app that is based on a MySQL database .. php.. and templated with HTML and CSS. I have a form that has a lot of fields. I want my users to be able to type numbers using the 10 keypad (like for phone numbers, zips, etc.). The top row numbers on the keyboard work fine, the 10 keypad...
  7. bodington

    preg_replace syntax problem

    Thank you both for your suggestions. I tried them both and neither worked as I needed it to - but got me to thinking. So, I ended up just writing an if statement and it works fine now (can't believe I didn't think of it in the first place!). Here's my solution: If ($strText == "PageBreak")...
  8. bodington

    preg_replace syntax problem

    I am converting xml to pdf via php. I am using fpdf. I need to replace the string "PageBreak" with the code in fpdf to add a new page .. ie. AddPage(). So, I used this: $strText = preg_replace("/PageBreak/",$this->AddPage(),$strText); But instead of replacing the string "PageBreak"...
  9. bodington

    Insert Into MySQL via PHP

    Thank you!!! I used the INSERT INTO tblOnecopy Select * from tblOne Works perfect! I'm a master at making things more difficult than they need to be. This is actually just a small part of a function. Everything else is working, just stuck on this part... trying to get palm pilots...
  10. bodington

    Insert Into MySQL via PHP

    Thank you so much for your help, but I'm still getting the same error on the $query line: Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING (FYI - when I remove that one line, everything else prints fine, so I think it's just that...
  11. bodington

    Insert Into MySQL via PHP

    Ok, I added the ", removed the unnecessary lines, and now I'm getting this error on the same line: Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING I really appreciate the help!
  12. bodington

    Insert Into MySQL via PHP

    I'm very new to php. I am using php with a mysql database. I am trying to do a simple append query via php. I want to copy the data from one table into another - empty table that has the same structure, then display the new table data in a comma separated list. I'm not sure what I'm doing...

Part and Inventory Search

Back
Top