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: ronnyjljr
  • Content: Threads
  • Order by date
  1. ronnyjljr

    Auto Wrap on Input Field

    Hello, If I have an input field as such: <input class="myClass" type="text" name="test"> and CSS class: .myClass{ width: 200px; } Is there any way with CSS, to have the text auto-wrap when text hits the right hand side? Rather than auto scrolling to the right, pushing the...
  2. ronnyjljr

    Round Corners in Safari

    Hi, If I have a <div> or a <fieldset> tag in Firefox, I can apply the following styles to make them have rounded corners: -moz-border-radius: 8px; -moz-box-sizing: border-box; In IE I use VML to render rounded rectangles to replaces <divs> and the <fieldset> tag is already rounded if...
  3. ronnyjljr

    String To Dom Tree in Internet Explorer

    Hello, I have an HTML String that is returned from an innerHTML property of a rich text area embedded in my page. I want to take this string and load it into a DOM tree so that I can iterate through it's elements. I can do this in firefox by using the treewalker. Can anyone show me how...
  4. ronnyjljr

    Downloading a file...

    If I wanted to download a file from a web server, how would I go about doing it? Would I use Sockets or is than an easier way? Thanks, Ron typedef map<GiantX,gold, less<std::shortestpathtogold> > AwesomeMap;
  5. ronnyjljr

    Sleep and Wakeup

    Hi, Does any one know how to sleep and wakeup the computer at certain times? I would imagine we would have to do this in the task scheduler. But I want the computer to sleep every night at 1:30am and wakeup at 8:00am. Is this possible? Thanks, ~Ron typedef map<GiantX,gold...
  6. ronnyjljr

    LDAP

    Hello, I am using a snippet I found on a website to run ldap queries. Would it be better to create a custom object to hold all of the ldap information retrieved for a particular person? or does this already exist as a java class somewhere? //IE... public class MyLdapResult { String...
  7. ronnyjljr

    Draw Lines with CSS

    Hello, Is it possible to define two <span> tags and draw a rectangle between them? Is there an alternate way of doing this? Thanks, Ron typedef map<GiantX,gold, less<std::shortestpathtogold> > AwesomeMap;
  8. ronnyjljr

    IFrame Height - Dynamic Resize

    This isn't a question, but rather a solution to a problem that has bothered me for quite some time. I want to dynamically resize my iFrames when they loaded a new page. Apparently, this is a task alot of developers want to accomplish. Search google for it. I did just that and received many...
  9. ronnyjljr

    Flash Networking Support?

    Hello, What kind of support does actionscripting give for networking? I.E. Does it have the ability to open sockets and send textual or encoded data to a listening server written in a different language (such as Java or C)? If so, examples? Thanks, Ron typedef map<GiantX,gold...
  10. ronnyjljr

    Better to use SQL or Higher Level language?

    Hi there, I am having a debate with my co-worker and I hoped some of you could lend some insight. Is it better to issue an SQL statement that limits the number of items returned based on your query? or, Is it better to return all the items from the table and then use a higher level...
  11. ronnyjljr

    Select X number of Rows

    Hello, I think this is a rather simple question but IBM's DB2 docs fail to answer anything without having to search through hours worth of material. So, I know how to select the top 5 rows, SELECT * FROM TABLE.FOOBAR FETCH TOP 5 ROWS, I think that is the syntax. How do I create a statment...
  12. ronnyjljr

    tmpFile.renameTo(classFile)

    Hi there, I am using Apache Tomcat v5.5.17 with Java 1.5.07. I recently starting receiving this error: tmpFile.renameTo(classFile) on random JSPS. It seems to be different everytime I restart tomcat. There are about 50 Jsps in the Web application and it will only continue to grow. This...
  13. ronnyjljr

    Uptime

    What is the easiest way to get the uptime of the tomcat server? typedef map<GiantX,gold, less<std::shortestpathtogold> > AwesomeMap;
  14. ronnyjljr

    Shell Process ID

    How do I get the value of the process id of the shell that I am current in? "$$" works from the command line, but I need a C command if at all possble. I have tried setting it with environment variables but have had no success. Thanks, Ron typedef map<GiantX,gold...
  15. ronnyjljr

    Running a script on ssh login

    Does any one know how I can run a specific script when the user logs in via ssh (Open SSH)? As soon as they login, before they are allowed to type, I need another program to run that the user can not exit until it is completed. Thanks, Ron typedef map<GiantX,gold...
  16. ronnyjljr

    Hard Drive Not Recognized

    Hello, I have Windows Server 2003 installed on a Sata hard drive. I have an IDE hard drive on primary IDE cable and it's set to cable select ( I have tried master and slave). Windows sees the drive in the hardware manager, shows it as working proerply, but it doesn't allow me to see it in...
  17. ronnyjljr

    Eliminating Start menu footprint

    Hi Guys, I am writing a popup window similiar to what AIM produces when a buddy signs on. It works fine but I am subclassing the JFrame and when the jframe is visible there is footprint of a program window (An empty box with ajva icon essentially) in the start menu on a windows xp box...
  18. ronnyjljr

    Next ImageIcon Question

    Ok, How in the world do I write an ImageIcon to a file (as an Image [GIF,PNG,JPG,etc]? I have is the object and google is useless. Thanks again, Ron typedef map<GiantX,gold, less<std::shortestpathtogold> > AwesomeMap;
  19. ronnyjljr

    Painting an Animated GIF

    Ok here goes, I am using a customized list model, this list model uses a customized cell renderer. The object the cell renderer uses is a subclass of a JPanel. I have an animated gif that I wanted to show, I am able to have the regular gif drawn but not the animated. Any help...
  20. ronnyjljr

    HTML Support in Swing Components

    Hi Guys, I just recently found out that the JList can support html formatting. Are there any more Swing components that support html in this manner? Thanks, Ron typedef map<GiantX,gold, less<std::shortestpathtogold> > AwesomeMap;

Part and Inventory Search

Back
Top