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 TouchToneTommy 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: *

  • Users: mellthy
  • Content: Threads
  • Order by date
  1. mellthy

    Walter Zorn JS graphics library drawing not only axis aligned ellipse?

    Hello, I'm experimenting with Walter Zorn's graphics library (http://www.walterzorn.com/jsgraphics/jsgraphics_e.htm). I wonder if there is a way how to draw ellipses that are not axis aligned. I've found a demo of rotation there too (http://www.walterzorn.com/jsgraphics/demos/animarc.htm), but...
  2. mellthy

    JMAIL Attachment.New problem

    Hi, I'm trying to send an e-mail with an attachment via JMAIL. set msg = Server.CreateObject("JMail.Message") msg.Logging = true msg.Silent = true msg.From = "someone@somewhere" msg.AddRecipient "me@localhost" msg.Subject = "a bad try" msg.Body = "didn't work, did it?" msg.Charset =...
  3. mellthy

    Absolute positioning + button action

    Hi, I'm a newbie in Java, please be tolerant :) I got the simplest code possible (absolute positioning): import java.awt.Container; import java.awt.Insets; import java.awt.Dimension; import javax.swing.JButton; import javax.swing.JFrame; public class AbsoluteLayoutDemo { public static...
  4. mellthy

    Can't delete files via filesystem fcs (WinXPPro, IIS 5.1)

    Hi, I want to delete a file using this absolutely simple script: path = "deleteme.txt" set fso=Server.CreateObject("Scripting.FileSystemObject") fso.DeleteFile path,true It works without a problem on my webhosting server. But when I try it at home (WinXPPro, IIS 5.1), the browser obviously...
  5. mellthy

    "i" variable in an input name

    Hi, is there any way how to put "i" variable from "for" cycle into an input name? <html> <head> <script> function change_rows() { for (var i = 1; i < document.forma.rows.value; i++) { document.forma.rowi.disabled = true } } </script> </head> <body> <form name="forma"> Number of...
  6. mellthy

    Help with attachment via mail() (not far from solution)

    Hi, I've used a code for sending e-mail via mail() function which posted here a programmer &quot;ignition&quot; (thread434-153872). This code succesfully send an e-mail message which (in Outlook) contains some attachments (jpg image in this case). But, the image has only a few of bytes and...
  7. mellthy

    Using variable in for each cycle

    Hi, its quite stupid question i am afraid, but i cant solve it myself. Using a variable from database query result(&quot;columns&quot;) shows an error - &quot;Type difference: [String &quot; &quot;]&quot; or something like that. Here is my code: For column = 1 To result(&quot;columns&quot;)...
  8. mellthy

    How to send attachments via e-mail in PHP?

    Good day, I wonder, how to send attachments via e-mail in PHP. I searched in mail() function but without any success. Any idea? Thx a lot. Ganymed

Part and Inventory Search

Back
Top