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. huBBLe

    <logic:iterate> tag

    Ok I managed to figure this out myself. Just in case anyone is interested, here is how to do it: In the target jsp page, do the following: Hashtable hashtable = (Hashtable) request.getAttribute("hashtable"); Enumeration enumKeys = hashtable.keys(); <html:select property="someProperty" >...
  2. huBBLe

    &lt;logic:iterate&gt; tag

    Hi, I have a Hashtable in the Action class and I did a request.setAttribute("hashtable",ht); In my target jsp page, I need to iterate through the key-value pairs in the Hashtable and populate a drop downbox. Can the <logic:iterate> tag to do this? I really have no idea how can this be...
  3. huBBLe

    autonumber

    what is the equivalent of the autonumber of Access in Oracle? dun think there is rite? so how do i generate a running number that is juz +1 bigger than the previous one?
  4. huBBLe

    equivalent of JOIN in Oracle

    i have the following SQL statement that works perfectly in Access but when i tried to use it in Oracle, it gives me a &quot;SQL command not properly ended&quot; error. Found out that Oracle does not actually support JOIN statement. i need help in modifying the statement below so that it will...
  5. huBBLe

    Find files

    Thanks Ken, it works! the output this command gives is: . ./.hiddenfile1 ./.hiddenfile2 ./.hiddenfile3 juz touch up the line u gave a bit to become: find . -name '.?*' -print | cut -f2 -d/ and i get: .hiddenfile1 .hiddenfile2 .hiddenfile3 which is wat i need! Thank You
  6. huBBLe

    Find files

    think u misunderstood my question. wat i need to do is to list all hidden files and NOTHING else. say if i have 5 files of the type &quot;.XXXX&quot;. then only these 5 files will be listed out, ignoring the rest of the files.
  7. huBBLe

    Find files

    how do u list out hidden files (ie, wif a &quot;.&quot; appended in front of the filename) only? Thank You
  8. huBBLe

    Size of a file

    i have a binary file and i would like to find the size of this file in bytes. any commands i can use? pls help. newbie to shell programming here... Thank You!
  9. huBBLe

    Renaming files

    how do u write a script that renames all the files in the current directory such dat a &quot;.&quot; is appended to the front of the filename, ie make it invisible?
  10. huBBLe

    Embed java in script

    how do u embed java code (or any other language) within the body of the bash script itself, compile it and then run the program? Thanks a million!
  11. huBBLe

    Printing

    I GOT IT!! did some twiddling around and found out that i can actually scale the picture simply by changing the parameters &quot;width&quot; and &quot;height&quot; of the paintpicture method. (DUH!!) didn't noticed the paintpicture method the first time round. took some trial n error to...
  12. huBBLe

    Printing

    thanks hackster! that was a pretty cool site indeed. unfortunately, the routine does not accomplish wat i want. this routine does not scale the form to fit the paper like i wanted to. in fact, the effect is the same as that of PrintForm. the printout looks really ugly wif the form all cropped...
  13. huBBLe

    Printing

    I'm using frmMyForm.PrintForm to do the printing but it doesn't fill up the whole page. I understnad that another way is to transfer all the controls onto a picture box and then print the picture box. However, this will require too much of a trouble as I have abt 200 - 300 over controls on one...
  14. huBBLe

    Referencing a MS Graph Chart

    Hi Mark, thanks for the reply. tried running the above but got some errors. anyway, i found another article that describes how to achieve wat i want (to a certain extent) which looks similar to urs. have a look: '************************************************************ Private Sub...
  15. huBBLe

    Referencing a MS Graph Chart

    I need to make a reference to a MS Graph chart that i have inserted in a Word document. how do i go about doing it? do i use the path of the Word document?
  16. huBBLe

    Graph chart in Word (VB related)

    hello! i have a few graph charts in Word and i would like to be able to insert data into the datasheets from my vb app. how do i go abt accomplishing this? i already have some bookmarks in the Word doc template and this is how i insert the values...
  17. huBBLe

    Graph chart in Word

    hello! i have a few graph charts in Word and i would like to be able to insert data into the datasheets from my vb app. how do i go abt accomplishing this? i already have some bookmarks in the Word doc template and this is how i insert the values: ****************************** Dim AppWord...
  18. huBBLe

    Error zero

    works buddy! thanks. think this has something to do with the code falling through all the error handlers rite?
  19. huBBLe

    Error zero

    this question may sound silly but i really have no idea wat it means. i keep getting this &quot;error 0&quot; error when i use Err.Number in my error handler. when i do a Err.Description, it doesn't print anything. my questions are: 1) What is this error 0? 2) Does it mean there is no error...
  20. huBBLe

    Bookmarks

    juz wat i needed. thanks ilses!

Part and Inventory Search

Back
Top