User Profile

Collapse

Profile Sidebar

Collapse
rag84dec
rag84dec
Last Activity: Apr 29 '08, 08:15 AM
Joined: Mar 27 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Send mail thru ASP goes to "C:\Inetpub\mailroot\Queue"

    Hi,
    THe mail sent through the ASP code given below is going to "Queue" folder in "C:\Inetpub\mai lroot"...And the code is
    Code:
    Set objMessage = CreateObject("CDO.Message") 
    objMessage.Subject = "Subject"
    objMessage.from = "some@gmail.com"
    objMessage.To = "some@gmail.com"	
    objMessage.TextBody = "e-mail message"
    objMessage.Send
    ...
    See more | Go to post

  • rag84dec
    started a topic Graphs and pie charts in ASP

    Graphs and pie charts in ASP

    Hi,
    I want to draw Graphs,pie chart in the web tool.PLease
    let me know what has to be used for that?....If you could
    send me a small piece of code as an example it would be great...

    Thanks
    See more | Go to post

  • rag84dec
    started a topic Change the javascript hidden value

    Change the javascript hidden value

    Hi,
    i want to change the hidden elemtn value in the javascript.
    the name of the filed will have to be formed in the javascript.

    like this
    Code:
    var temp="name"+1;
    
    document.[B]temp[/B].value="newname";
    
    i want temp to be replaced by name1 so that the value of name1 field shud change.like this "[B]document.name1.value="newvalue" [/B] "
    ...
    See more | Go to post

  • rag84dec
    started a topic Getting the Button's value

    Getting the Button's value

    i do not want to submit for the "button" with the name "buttonname"... For some reason i want that button's value...once i submit i shud get "buttonvalue".. .wat is wrong with my code???



    Code:
    <form name='rag' action='tt.asp' method='post'>
    <input  type='button' value='butonvalue' name='buttonname' />
    <input type='submit' value='OK' name='submit'/>
    ...
    See more | Go to post

  • rag84dec
    started a topic getting the value of a button

    getting the value of a button

    hi,
    I have the following code to get the button's value..It is giving empty string....
    Can anyone help in getting the value of type button

    Code:
    <form name='rag' action='tt.asp' method='post'>
    <input type=text name='ra'/>
    <input  type='button' value='Saks' name='Slskdfh' />
    <input type='submit' value='OK' name='submit'/>
    </form>
    ...
    See more | Go to post

  • storing the value returned from the const member function

    Hi ,
    I have a const member function which returns a protected member of a class.Like this
    Code:
    class A
    {
    protected:
    int Number;
    public:
     int   Get_Number   (void) const   { return(Number);  }
    };

    I want to use the value returned by the Get_Number function.
    How can i do

    int temp=Data.Get_N umber(); is giving me an execption(Data is...
    See more | Go to post

  • passing string to javascript function from asp

    Hi,
    i tried the following to use a string from asp code in javascript but it didnt work....please tell me how to pass a string to a javascript


    Code:
     <script language="JavaScript">
    function ChangeAll(f)
    {
    	
    	alert(f);
    }
    
    </script>
    
    <%
    
    
    
    r="here"
    response.write("<form method='post'>")
    ...
    See more | Go to post

  • rag84dec
    started a topic Dynamically changing the Button initial

    Dynamically changing the Button initial

    Hi,
    I have an asp code which creates a grid or matrics (5 x 5 matrics).Each cell contains a button which will have an initial
    .The initial will be read from a database.

    say the database has these entries...table name is "TestSuite"
    ---------- ------- --------
    | Initial | Name |
    ---------- ------- --------
    | S | TestSuite1 |
    -------------------------------...
    See more | Go to post

  • rag84dec
    started a topic checkbox in CListCtrl
    in C

    checkbox in CListCtrl

    Hi,
    I have many check boxes in a list control.My problem is to uncheck the check box if there is a check box already checked.How can i do??..I tried doing the below but it checks the first check box and unchecks the others.

    Code:
    void SomeClass::OnCheckboxChanged
    ( NMHDR*                  pNMHeader,
      LRESULT*                pResult )
    {
    func();
    }
    bool SomeClass::func
    (void)
    ...
    See more | Go to post

  • rag84dec
    replied to Tomcat installation problem
    i installed the tomcat by executing the windows installer which i downloaded from apache website.After installing i couldnot see startup.bat file in "tomcat_dir/bin".Because of which i could not see the JSP project i have in webapps,when i go to "http://localhost:8080/myJSPProject/"
    See more | Go to post

    Leave a comment:


  • rag84dec
    started a topic Tomcat installation problem

    Tomcat installation problem

    Hi,
    I have downloaded the tomcat from the site and trying to install it.Once i install the tomcat i could not see startup.bat in bin directory.What i sthe problem can anyone tell me please?


    thanks
    See more | Go to post

  • rag84dec
    started a topic packing and unpacking problem
    in Perl

    packing and unpacking problem

    Hi,
    I want to get output as 0x23400000345.. ..in the below example
    how to get??..i tried out the following but unable to get the anser ....

    please help...


    $r=0x234;
    $t=0x345;

    $y=pack('L L',$t,$r);
    $x1=unpack('L!' ,pack('P',$y));
    printf("\nThe value is $x1");
    See more | Go to post

  • rag84dec
    started a topic postmessage problem.....64 bits problem
    in Perl

    postmessage problem.....64 bits problem

    Hi,

    i am using win32::guitest package since 2 weeks...

    but one problem i am finding is putting the values in the PostMessage();

    it takes 8 bytes as the last parameter.How to send it as the 8 bytes in perl??


    8 bytes are like this ...lower 4 bytes for the x coordinate and upper 4 bytes for the y coordinate of the windows component in a gui.

    I have x and y coordinate...
    See more | Go to post

  • rag84dec
    started a topic LEft shift problem
    in Perl

    LEft shift problem

    Hi,

    I need to shift 32 bits in perl.

    Like $t=0xe1;
    $r=$t<<32;

    but it is not working since scalar can hold 32 bits ...can u tell me how to make it work???

    i want to send this to postmessage($hn d,$msg,0,$r);

    $r should contain yx position....x-32 bit y 32-bits

    how to do????
    See more | Go to post

  • rag84dec
    started a topic ASP database MS access problem
    in .NET

    ASP database MS access problem

    Hi,
    i have MS access database db1.mdb in "c:\"

    my code is this
    Code:
    <html>
    		<head>
    			<title>Time Clock</title>
    			
    		</head>
    		<body>
    			<%
    				dim dbPath,cn,sql
    				dbPath="c:\db1.mdb"
    				Response.Write "Here I am"
    				set cn=Server.createobject("ADODB.Connection")
    ...
    See more | Go to post

  • rag84dec
    started a topic Contructors and destructors problem
    in C

    Contructors and destructors problem

    Hi,
    I the below code i could see 2 constructors and 3 destructors being called....i want to know why....can anyone help me in knowing this???



    class e
    {

    public:
    e()
    {
    cout<<"Contruct or\n";
    }
    ~e()
    {
    cout<<"Destruct or\n";
    }
    void f(e e1)
    {
    cout<<"In...
    See more | Go to post

  • rag84dec
    started a topic Device management information through c++
    in C

    Device management information through c++

    Hi,
    can anyone tell me how to get the information from c++??
    i mean Right click at My computer ->manage->device management->then some information from the items available.....c an anyone give me some idea about it?




    thanks
    See more | Go to post

  • rag84dec
    started a topic Systreeview problem
    in Perl

    Systreeview problem

    Hi,
    i have a windows application which has the systreeview32 tree structure in it.
    The windows application is a Dialog box.my question is can anyone say who to fetch the items ???

    Thanks
    See more | Go to post

  • rag84dec
    started a topic What is the use of $#_?
    in Perl

    What is the use of $#_?

    What is $#_??
    Please some one explain me....
    See more | Go to post

  • rag84dec
    replied to Perl/Tk - Automating an external application
    in Perl
    ok...sorry....
    i will describe it properly....I have an exe (MFC).When u double click on it,it opens a dialog box having bottons and check boxes.

    My query is ....whether we can automate the "checking the check box" and "clicking on the button"....and things like that through perl Tk???
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...