User Profile

Collapse

Profile Sidebar

Collapse
chez
chez
Last Activity: Apr 25 '12, 08:15 AM
Joined: May 9 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • chez
    started a topic Adding 3 decimals places

    Adding 3 decimals places

    i wanted to add 3 decimals places to either string or int.
    let say

    scenario 1:

    a = 8
    to
    a = 8.000
    b = 11.6
    to
    b= 11.600
    c= 34.55
    to
    c= 34.550

    anyone can help?
    See more | Go to post

  • chez
    started a topic Runtime error on exporting to excel

    Runtime error on exporting to excel

    Hi, I am trying to export data to excel but it seem that it always return with runtime error 70 permission denied. I am using vb6 and wanted to implement it in windows 7. It works though in winxp but not in win7. Any advice?
    See more | Go to post

  • chez
    started a topic XML IF statement <or>
    in XML

    XML IF statement <or>

    I was trying to compare a keyword with 2 word using "or" but it came out error on the logic.

    This is the statement

    Code:
    <If Test="$(Keyword)[.='Up' or .='Above']">

    May I know if there is any mistake in the above statement?
    See more | Go to post

  • chez
    replied to How to empty the directory?
    thx all for the help
    It works with that.
    See more | Go to post

    Leave a comment:


  • chez
    started a topic How to empty the directory?

    How to empty the directory?

    how to empty the files in the directory without removing the directory itself?
    I want to have it force delete all the file in the dir
    so
    I tried using

    rm -fR [directory]

    but it delete my directory as well.

    pls advise.
    See more | Go to post

  • Item in Listbox to display content in another listbox

    Developement platform : Linux
    I'm using cgi.

    I have 2 listbox (<select>) on the same page.
    the first listbox will display all the item name(flat file) from a directory.
    the second listbox will then display the content of the selected items in first listbox to the second listbox once the item in first listbox is clicked or selected.

    below are my first listbox. i have no idea if that is correct or not....
    See more | Go to post
    Last edited by Meetee; May 11 '11, 06:18 AM. Reason: please use code tags [code][/code] around your code

  • Item in Listbox to display content in another listbox

    Developement platform : Linux
    I'm using cgi.

    I have 2 listbox (<select>) on the same page.
    the first listbox will display all the item name(flat file) from a directory.
    the second listbox will then display the content of the selected items in first listbox to the second listbox once the item in first listbox is clicked or selected.

    below are my first listbox. i have no idea if that is correct...
    See more | Go to post

  • I will be using cgi.
    Will this work?

    Code:
    <form action="your_file.cgi" method="GET">
    ....
    <textarea name="texttosave" cols=30 rows=40></textarea><br>
    ...
    <input type="submit">
    </form>
    you can save the text using the following script:
    Code:
    #!usr/bin/perl
    use CGI;
    my $query=new CGI;
    my $txt=$query->param("texttosave");
    ...
    See more | Go to post
    Last edited by numberwhun; May 18 '11, 01:42 PM. Reason: Please use code tags around your code! They are required in the forums.

    Leave a comment:


  • how to save text from textBox to a text file using Perl in Unix platform

    Hi,

    I want to save the text from a text box to a text file, but i have problems implementing it.
    can someone guide me?

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