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

    Error 3011, TransferText acExportFixed and table specification

    I'm modifying a existing Access App someone else made to add additional fields to the application. The application imports a spreadsheet and formats the fields into an text export file. One line of code is giving me problems: DoCmd.TransferText acExportFixed, "T_INFO_Text Export...
  2. MaxGeek

    Help Sorting Alphabetically in Java

    I would like to sort some class objects alphabetically and want to know if there is an easy way to do it. I have classes like Person.class which has variables like: int id String name (Getters and setters for both) Then I have a hashSet of Person.class objects and I want to return them sorted...
  3. MaxGeek

    Sorting Alphabetically Help

    I would like to sort some class objects alphabetically and want to know if there is an easy way to do it. I have classes like Person.class which has variables like: int id String name (Getters and setters for both) Then I have a hashSet of Person.class objects and I want to return them sorted...
  4. MaxGeek

    Image Upload and Resize

    Does anyone know a good tutorial or download for a simple image upload and resize PERL script?
  5. MaxGeek

    How to do something like Post Back in JSP

    I'm trying to make a form in JSP. Similar to a automotive form. I have a drop down list for "Makes" (honda, toyota,etc) and once a "make" is selected I want to generate the items in drop down list for "models" like (civic, s2000, pilot, etc) Similar to how autotrader.com works. My question is...
  6. MaxGeek

    How to make HTML emails in outlook 2004

    Hey I made an HTML email but I'm having trouble using it in an email. Does anyone know how to create a outlook 2004 template with html or even just send an html email with outlook 2004?
  7. MaxGeek

    Help making random function faster

    So I have a method that randomly places pieces on a board. The method uses the rejection method where it will create a random number to place the piece on the board, but if the place is already taken it will try again. The problem with this method is that if I have a lot of pieces to place it is...
  8. MaxGeek

    Terminate Service with VBScript

    Hi I'm trying to make a VBScript that would terminate a windows service/application at a given time like set the script to do it every sunday. However the script I'm using right now won't terminate the service/application I want, but it works at terminating other programs I've tried like...
  9. MaxGeek

    IE6 MinWidth Fix

    Can someone link me to some good MinWidth Javascript fixes? I have been using the one from www.projectseven.com but it has problems with my design where if I made the window smaller then the minwidth and then clicked the maximize button I would be missing my main content div.
  10. MaxGeek

    Saving variable values in classes

    I'm trying to create a class that returns a random number. However I want it to continue to return that same random number 4 times before finding a new random number and returning that 4 times and etc. My problem is that I'm having trouble saving that random number in the class. Right now I'm...
  11. MaxGeek

    Change a td's backgroudn color

    Hi, I'm trying to change a td's color with javascript. the html looks like this: <td id="cell0"></td> the javascript part that I'm having trouble with looks like this. function highlightBox() { var currentBox = document.getElementByID("cell0").bgColor; currentBox.style.backgroundColor =...
  12. MaxGeek

    Read String characters

    Hi, I'm trying to figure out how to read the first character of a String. Like if the user inputs, Yes, YES, y, or No, N. I'm not sure if its the correct thing to use right now but I'm trying to use "startsWith."
  13. MaxGeek

    Sendmail Error

    I'm trying to get a sendmail script to work, but when I run it I get a error message of: "No recipient addresses found in header" Heres the code I am using: #!/usr/local/bin/perl print "Content-type: text/html\n\n"; use CGI; my $query = new CGI; my $sendmail = "/usr/sbin/sendmail -t"; my...
  14. MaxGeek

    Read and store variables in XML

    Can someone show me how to read and store variables in XML? I want to make a simple voting poll. So that each time someone votes, the script reads the variables from XML and adds 1 vote to it and then saves it back to the xml file.
  15. MaxGeek

    New advice on how to store forms

    Okay, I want to create a system that will display different forms that I have. I want to save each form individually in an external file and load them from a main file. Like loading an XML file. I want to do it this way to make it easier to add new forms. Would it be possible to save the HTML...
  16. MaxGeek

    How to read and display XML

    Is there a way to read and display an XML file all from the script tag part of an ASP.NET page. All the tutorials I have done display the XML part in a form tag in the body. What I'm trying to do is use the time on the server to get the month. With the month pull up data corresponding to the...
  17. MaxGeek

    Case sensitivity for special names

    I've been using a script to make names like "john.doe" become formatted to "John.Doe" so that it can be validated properly with a case sensitive server. I ran into a problem though, a person with the name of "Ronald.McDonald." My script can only make it "Ronald.Mcdonald." Can someone help me...
  18. MaxGeek

    Help with Validating Email address tutorial

    Hi I found a lot of email validating scripts on the net, but I would like a tutorial that would teach me how to make my own custom script. Does anyone know of a good tutorial. I only need to validate the first part of an email address in the format "john.doe" So I want to make my own to apply...
  19. MaxGeek

    Is there a better way to pass variables?

    Is there a better/more secure way to pass variables between perl scripts. I've been passing variables between a few different cgi files using the address bar method. IE: http://www.abc.com/test.cgi?a=1&b=2 My main concern is if I send logins or passwords this way people can see them...
  20. MaxGeek

    Case sensitive help

    I want to change a variable $name with the value of first.last (john.doe) to First.Last (John.Doe). Like the format for the variable will always have a &quot;.&quot; between the first and last name. I want to make the first letter of the first and last name are a capitol. So I though I would...

Part and Inventory Search

Back
Top