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 strongm 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. magicme

    Javascript viewed in Outlook

    i also believe that OUTLOOK will "disarm" any Javascripts in the HTML file. this is done by added some text to the <script> tag. the person who recieves the e-mail needs to edit the added text out of the <script> tag in the HTML file in order for the Javascript to work. regards magicme
  2. magicme

    textwidget scrollbar and output file

    thanks Bong. for the record, here is what worked.... # # proc writethefile {} { # set a mark at the very beginning of the textbox..... .textframe.maintextbox mark set beginmark 1.0; # make \outputfile\ a global variable (for other reasons) global outputfile set initialdir [pwd]; set...
  3. magicme

    jagged fonts

    defaulting the font looks just as bad. strangely, when i write the textbox to a file and open the file in a text editor (gedit) the font looks great. again, i have used different font families in the text widget and they all look similarly bad (there are differences, but they are bad). i...
  4. magicme

    textwidget scrollbar and output file

    hello again i still have the font problem i posted yesterday .... this is a new topic. i have a vertical scrollbar attached to a text widget and it works just fine. but if i scroll down (move text up) and then write the contents of the text widget to a file, the output does not start at the...
  5. magicme

    jagged fonts

    hello i am writing a simple tcl script to keep my notes in, but all fonts in my multiline text widget are jagged .... fonts look okay in other applications so its not my monitor. i have tried lots of fonts and they are on my system. here is the code i use..... # window configure . configure...
  6. magicme

    writing text widget contents to file

    thanks it worked like a charm. daveleo
  7. magicme

    writing text widget contents to file

    hello i am new to tcl/tk and am converting some VB programs as i learn tcl. am trying to write (puts? dump?) the contents of a multiline text widget to a file. i was using the puts command to write stuff line by line simultaneously to the text widget and the output file, but this makes a lot of...
  8. magicme

    create &amp; open html from awk

    thanks, i will do that.
  9. magicme

    create &amp; open html from awk

    hello i am rediscovering awk (it goes round and round), as i want to process an input file and output an html format file to be viewed in a web browser. i have a pretty clear view of most of the steps except one. as i write / debug the awk script, i'd like to open the html file automatically...
  10. magicme

    microsoft webbrowser control

    dglienna the problem had nothing to do with the webbrowser control.... it was my programming error.... when exiting the 'edit' mode i did not write the 'scratch' file to the correct folder so when the 'view' mode called the file into the webbrowser control, the linked images were not in the...
  11. magicme

    microsoft webbrowser control

    cancel my question .... found my mistake. daveleo
  12. magicme

    microsoft webbrowser control

    hello i am experimenting with the webbrowser control. wrote a small html viewer that uses it and it works fine for (as you might imagine) viewing html files and it shows images correctly. i then tried to add some sophistication and make the control visible and invisible so i could edit the html...
  13. magicme

    print from keyboard to picturebox

    thanks Hypetia i see what you're doing here and will start there and work it through. daveleo
  14. magicme

    print from keyboard to picturebox

    hello i wrote a utility to add text to an imported image in a picturebox control. the user imports the picture, enters text in a text box, then clicks on the picturebox and it writes the contents of the text box at that point on the picture. this was very simple. i would like to eliminate the...
  15. magicme

    running gawk from VB6

    thanks to all i ended up creating a VB6 form to select scripts and files and point to executables, etc. and the folks over on the VB6 forum corrected a few stumbling blocks in getting that done. alls well that ends well. daveleo
  16. magicme

    the &quot; &gt; &quot; character

    thanks Hypetia that worked fine being able to invoke gawk from a VB6 form will save me tons of time in the future. daveleo
  17. magicme

    the &quot; &gt; &quot; character

    hello i have a VB6 / gawk interface question. running gawk in a DOS window allows you to redirect output to a file using the " > " symbol. my gawk script works fine when run in a command line window, using > to redirect output to a file. i wrote a VB6 code to run the gawk script and it does...
  18. magicme

    running gawk from VB6

    Salem....thanks for the response. if you would, see my second message.....gawk is not interpreting the " > " symbol as an output redirection. i am working on syntax variations now, but would you have an idea on that? daveleo
  19. magicme

    running gawk from VB6

    PHV thanks....that runs successfully and scrolls the ouput thru a DOS window ....but gawk is apparently interpreting the " > " symbol to be an input file (that doesnt exist of course), rather than an output redirection to [junk.out] i will keep hacking....if you have an idea on this new...
  20. magicme

    running gawk from VB6

    hello i am posting this question on both the VB and the awk forums, as i dont know if my error is VB or gawk related. this is a variation of the question i posted earlier on the awk forum. if you can, please answer either the VB side of this or the awk (gawk) side of this problem. i installed...

Part and Inventory Search

Back
Top