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!

Search results for query: *

  • Users: jonperks
  • Content: Threads
  • Order by date
  1. jonperks

    getURL and POST - am I missing something?

    When I click a button the below code sends me to the url witha long query string with all my variables. myButton.onRelease = function(){ getURL("http://www.domian.com", "_self", "GET"); } Works great. However I want it to look tidy and want to send the variables via POST...
  2. jonperks

    actionscript format fonts

    I have an input text field and a button that changes the font, here is the code the changes the font... typeface1.onRelease = function(){ format = new TextFormat(); format.font = "Times New Roman"; format.italic = true; format.size = 18; test.setTextFormat(format); } This changes the font...
  3. jonperks

    input text field CAPS - UPPERCASE

    I have certain text fields that I want to only accept uppercase text, I dont mean that they have to have caps lock on.... I am looking for a way that regardless to if they type with caps lock on or off it gets entered in uppercase? Hope that makes sense thanks in advance....
  4. jonperks

    Stupid Stupid header location!!

    $Username = $_SERVER['DOCUMENT_URI']; $Username = str_replace("/", "", $Username); $db = mysql_connect("server", "user", "pass"); @mysql_select_db("db",$db); $sql = "SELECT UserID FROM Users WHERE Username = '$Username'"; $result = mysql_query($sql); $row_rs_item = mysql_fetch_assoc($result)...
  5. jonperks

    PHP 404 Error Page with redirect

    Hi I've got a php custom 404 error page set up no problem, however I want to take what the user adds after the slash and redirect based on that. for example http://www.mydomain.com/jon I want to take the "jon" and redirect to a page with jon as a query string. I have looked up a lot about...
  6. jonperks

    sharing internet connection on a ring network?

    I have a wireless laptop connected to a desktop pc that has the internet, I dont have a router so I am connected to this desktop using an as hoc connection and I share the internet with no problems. My question is can i connect a device that isn't wireless to the laptop, ie use an ethernet...
  7. jonperks

    Reloading when parsing variables.

    I've got a fairly large flash movie that has a couple of variables being sent to it via a querystring. This page needs to be reloaded each mouse click and sends new variables to the movie, my problem is that each time it refrshes due to the different values of the variables the whole movie has...
  8. jonperks

    Forms - I just dont get filters

    I have a form with a drop down list of data from a table. This data is linked to data in another table. I want the first form to have a button that opens a second form but for this second form to have the data linked from the drop down list. I really have no idea about access so the simpler the...
  9. jonperks

    StrConv String Conversion

    Hi all, I've read all about strconv and the input masks, I use ASP and SQL normally but have to do something which should be easy in Access. I haven't used access and i pretty much have no idea. I have a whole table with tons of data and its all other the place in terms of format. I simply want...
  10. jonperks

    multiple line substitution

    i'm new to pearl and need to multiple line replace <tr> <td class=&quot;tablepaddingsub&quot;> <a class=&quot;leftbar&quot; href=&quot;http://link&quot;>Virtual Fair</a> </td> </tr> with <tr> <td...

Part and Inventory Search

Back
Top