User Profile

Collapse

Profile Sidebar

Collapse
Theadmin77
Theadmin77
Last Activity: Jun 9 '08, 10:40 PM
Joined: Nov 15 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Theadmin77
    started a topic cfoutput to a htm file? html frames

    cfoutput to a htm file? html frames

    Currently i have a DEFAULT.htm file that display 2 htm frames , FRAME1.htm and FRAME2.htm.

    1.FRAME 1.htm present a form to fill up a sql query and pass info to a "MYQUERY.cf m"
    2.MYQUERY.cfm performs query on sql and show results in table on FRAME1.

    Is any way i can make that result table to show up on FRAME2.htm instead??

    I tried everything and nothing works

    Any help will...
    See more | Go to post

  • Theadmin77
    replied to deadlocked code
    in C
    No unfortunately my code does not compile .
    See more | Go to post

    Leave a comment:


  • Theadmin77
    started a topic deadlocked code
    in C

    deadlocked code

    For some reason i am unable to compile or execute the following code ...look like a i have a deadlock or something like that ...

    Could anyone send me into the right direction ? Thanks !!
    This is the code:


    Code:
    int itemCount
    
    procedure producer() {
        while (true) {
            item = produceItem()
    
            if (itemCount == BUFFER_SIZE) {
                sleep()
    ...
    See more | Go to post
    Last edited by Ganon11; Oct 31 '07, 02:37 PM. Reason: Please use the [CODE] tags provided.

  • Theadmin77
    started a topic Invalid character in content model .
    in XML

    Invalid character in content model .

    I keep getting the following error when trying to read my xml:

    Invalid character in content model. Error processing resource

    Complaining about the following line in my dtd file:

    <!ELEMENT parts (cpu, ram, hard drive, optical drive, price)>

    Anyone can tell me what is wrong with this line ???

    Any help will be greatly appreciated.
    See more | Go to post

  • Theadmin77
    started a topic Function not working

    Function not working

    I am trying to create a script that will have a drop down menu and will load the web page selected .
    For some reason my function doesnot load the web page selected on the drop down menu What i am doing wrong here?

    Any help will be appreciated

    This is the function :
    function loadPage(){
    var sel_idx = document.demo.m enu.selectedInd ex
    var urlToLoad = document.demo.m enu.options[sel_idx].value...
    See more | Go to post

  • Theadmin77
    replied to Form field validation errors
    Problems with validation inputs!!

    I have to create a site that have fields to put the following info and input must be validated and error displayed otherwise.

    * First Name (limit 25 characters)
    * Last Name (limit 25 characters)
    * Street Address (limit 45 characters)
    * City (limit 25 characters)
    * State (2 character code )
    * Zip Code (5 digits only, must be numeric)
    * Date of...
    See more | Go to post

    Leave a comment:


  • Theadmin77
    replied to Form field validation errors
    Sorry , i will post it again !!!
    See more | Go to post

    Leave a comment:


  • Theadmin77
    started a topic Form field validation errors

    Form field validation errors

    Ok ,i have to create a page to allow entry of user information;all fields must be validated and error displayed otherwise

    * First Name (limit 25 characters)
    * Last Name (limit 25 characters)
    * Street Address (limit 45 characters)
    * City (limit 25 characters)
    * State (2 character code )
    * Zip Code (5 digits only, must be numeric)
    * Date of Birth (mm/dd/yyyy format,...
    See more | Go to post

  • Theadmin77
    started a topic stamp date on md5sum

    stamp date on md5sum

    I know this is a stupid question but ....im stuck ...
    I have 2 files were i have to perform a md5sum check , the results (hash string) output to a file were must be stamped with the date and time the validation was performed .

    I got the first part :
    md5sum file a file b > results.txt
    But how do you stamp those files with the time and date ??

    Any help will be appreciated
    See more | Go to post

  • Theadmin77
    started a topic etc/passwd edition

    etc/passwd edition

    Ok , i need to make some changes on user password policies by editing the etc/passwd file ...

    I need to change joeblow /etc/shadow entry so that he must change his password once every 90 days, receiving a warning 5 days prior to his password expiring, with no minimum time before user can change his passwords .

    So far i can accomplish the first part (90 days to change password) thru this command:

    chage...
    See more | Go to post

  • Theadmin77
    started a topic egrep issues

    egrep issues

    Ok , i m playing with egrep command and i am a little stuck in these (i have researched google and MAN pages already ):

    1.i need to search files using EGREP in the /var/log directory that contain the word 'su' (case sensitive) at EITHER the END of a line OR the beginning of the line. Add two lines of context AFTER each keyword found. (i can accomplish everything BUT the END of the line with the following command:).

    ...
    See more | Go to post

  • Theadmin77
    replied to Find files in Linux
    No , i s not grep because we are looking for file names no strings within a file .
    I know FIND must be used but i dont remember the correct parameters ..
    See more | Go to post

    Leave a comment:


  • Theadmin77
    started a topic Find files in Linux

    Find files in Linux

    I m kind of stuck ...i need to find files with a specific criteria but i can not make it work ....

    These are the ones :

    1.How do you Find files under /root that contain the whole words (i.e., not part of another word) 'foo', 'bar', 'baz', 'cat', 'cut', 'cot.' using a single command ?

    I tried :find /root -name 'foo.*' -name 'baz.*'-name 'cat.*'-name 'cut.*'-name 'cot.*'
    but seems that is not right...
    See more | Go to post

  • Theadmin77
    started a topic Validate floats
    in C

    Validate floats

    I have to validate s floats thru a function , but the validation have to be don with a string of 20 characters ....

    Any idea how to do thatvalidation floats?

    Any help will be very appreciated !!!

    This is the code so far :


    #include <iostream>
    #include <cstdlib>
    using namespace std;

    struct project
    {
    float latitude;
    float...
    See more | Go to post

  • Theadmin77
    started a topic issues with maximum and average value in functions
    in C

    issues with maximum and average value in functions

    Well ...this is a real challenge .....i got everything else working OK...but ...

    I have to get the average and maximum value out of a group of people thru two functions .I have problems passing value to function and processing it after is there ...
    Any help will be very appreciated.

    This is my code :


    #include <iostream>
    #include <cstdlib>
    using namespace std;...
    See more | Go to post

  • Theadmin77
    replied to String Error validation thru a function
    in C
    Thank you very much for your help!!!!
    See more | Go to post

    Leave a comment:


  • Theadmin77
    started a topic String Error validation thru a function
    in C

    String Error validation thru a function

    I dont know what i am doing wrong , i am trying to validate a string entry (first name to only take lower and upper case letters) thru a function , but for some reason is not working ....=0(

    Any idea why ?

    This is the code

    #include<iostre am>

    using namespace std;
    bool getstring (char[30]);

    struct nameuser
    {
    char first[30];
    char last [30];...
    See more | Go to post

  • Theadmin77
    replied to Passing array to functions thru pointers
    in C
    I got it thanks!!!
    See more | Go to post

    Leave a comment:


  • Theadmin77
    started a topic Passing array to functions thru pointers
    in C

    Passing array to functions thru pointers

    Ok , i am a baby in the world of C ++ ...
    I have to write a code where takes string from user ,check for error (thru a function ) and return it to the main function ,everything using pointers . I am really stuck on it (it does not take my pointers to function )

    What i am doing wrong ?? This is it:

    #include <iostream>
    #include <cstdlib>

    using namespace std;

    bool...
    See more | Go to post
No activity results to display
Show More
Working...