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 SkipVought 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. johnfdutcher

    Dissimilar displays in I.E. with the same resolution......

    I have a website (www.lotterychecker.com) built with HTML, DHTML, Python. When I view a particular page with my desktop at work (Dell, Win 2000 XP) with 800 x 600 resolution or with my personal laptop (Compaq, Win 2000 Pro) with the same resolution, the 'spacing' of a particular table (<td>)...
  2. johnfdutcher

    Win 2000 Pro screen resolution issue....

    I have Win 2000 Pro running on my Compaq Armada Laptop 7400. I want to alter the screen resolution...but when I enter 'Start', 'Settings', 'Control Panel', 'Display' the displayed text above the slider says 'Screen size pixels' instead of 'Screen Resolution' as is the case on my Win 2000 XP...
  3. johnfdutcher

    P/W TO WIN2000 PRO (PEER TO PEER)

    I have Win 2000 Pro running on a Compaq Armada 7400 notebook. I want to do something simple...change the screen resolution to match that of my desktop at work (this is running Win 2000 XP on a Dell desktop). If I go to 'Start', 'Settings', 'Control Panel', 'Display' for both machines the...
  4. johnfdutcher

    Pickle - dumps and loads to a string value.......

    I Pickle a 'list' object in a script into a 'string' using 'pickle.dumps'. I name the string variable as the 'value' of an HTML form 'input' object which is type 'hidden' on a form in the script. I pass that string (using method=post) to another script which uses cgi.FieldStorage() to retrieve...
  5. johnfdutcher

    Dynamically generated page, text boxes not enterable..

    I create similar pages with several text boxes in a row using both static HTML and a Python script. They both 'work' and both respond to a Javascript script that sets focus onload at the first box. The static page allows immediate data entry right at the point of the cursor....or in any other...
  6. johnfdutcher

    Dynamically generated HTML text boxes not enterable...

    I use a Python script to generate an HTML page containing a row of text input boxes: print'''<input type=&quot;text&quot; name=&quot;digs2&quot; size=&quot;2&quot; maxlength=&quot;2&quot; value=''' + '&quot;' + data[1][0] + '&quot;' + &quot;>&quot;''' ....this repeats for (7) boxes...
  7. johnfdutcher

    Setting the opening directory in 'IDLE'......

    When 'IDLE' opens on my Win 2000 XP install, it always does so to the 'idlec' directory. I would like it to somehow open each time to another 'folder' where most of my source resides....best of all if it could 'remember' where it was when I last left it and return 'there'....... Is this...
  8. johnfdutcher

    assigning one char array to another.......

    Given a structure as below I tried to assign char array members of another structure to those in this one (as shown); the compiler returns: &quot;request for member 'seq_tray' in something not a structure or a union&quot; (repeated for each member assignment in the code below replacing...
  9. johnfdutcher

    Comparing a structure char array to a string .......

    The 'C' compiler returns a message: parse error before '||' when compiling this line of code, given that 'rec' is a structure of which 'regnbr' is a member i.e. char regnbr[4]: if (strcmp(rec.regnbr,&quot;XXXX&quot;) == 0) || (strcmp(rec.regnbr,&quot;xxxx&quot;) == 0) { return 0...
  10. johnfdutcher

    Using a single byte character in calculation..

    I have an input file to process written in another language. One or more fields of (1) byte in length contain digits to be treated as integers. Simply multiplying the variable name for the field by a constant gives erroneous mathmatical results: char day_of_week = 7; int meal_index = 0...
  11. johnfdutcher

    Print (1) variable of a structure definition after a read....?

    It looked easy in the book.. I read from a disk file into a structure: structure rec_format { char recnbr[3]; char regnbr[4]; char lname[15]; } rec; fread(&rec, 1, 22, dsys); <---- dsys is an open fl ptr then try to reference one variable in rec.... printf(&quot;The registration...
  12. johnfdutcher

    Setting color coding of keywords in Win 2000 XP...

    My company just swapped my Win 95 PC for a Dell Optiplex GX270 with Win 2000 XP. I re-installed Fujitsu Cobol 3.0 from the same CD I have used multiple times the past year. No amount of 'playing' with the 'Display Format' options off the menu bar will cause keyword coloring to occur. I've set...

Part and Inventory Search

Back
Top