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

    a.out format problem

    You will need to build a GCC cross compiler. This issue is addressed on the mega-tokyo os forums. http://mega-tokyo.com/osfaq/ . Just look under C/C++ compilers to see what you need to do. I think the problem is that Cygwin and Mingw are too Windows oriented. Alternatively, you could build...
  2. egobbitz

    create calendar date from day number

    Sorry Jeff, Didn't see that you had already replied to this.
  3. egobbitz

    create calendar date from day number

    This function seems to work, though it does not handle the leap year. function ConvertDate(strDate) { var number = parseInt(strDate); document.writeln("Data input is " + number); var retVal; var months = new Array(31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365); var...
  4. egobbitz

    Free VB.NET (standard edition) from Microsoft

    Excellent link. Thanks for the info. Have a star..... Nick
  5. egobbitz

    Access 2000 Query and VBA

    You can use the following docmd.runcommand acCmdShowTable Nick
  6. egobbitz

    Upload graphic files more than 4KB

    Not sure if this helps, but there is a 4KB limit to the amount of information that can be used in a GET method through HTTP form. I think this is because it sends the data in the URL. From coding html forms, I know that in order to get around that you must use the POST method. Hope that helps.
  7. egobbitz

    ISNUMBER

    You have to convert the text to a number in order for it to evaluate correctly. Try this =IF(ISNUMBER(VALUE(LEFT(A14,1))),"NUMBER","NOT") Hope that works. I tried it on my pc and it did. Nick
  8. egobbitz

    Publisher's Edition

    Hello, I received and installed RH9 that came with a book I purchased. I did not get the source or some other things that are released in the "real" distro. How do I get the extra stuff? Nick
  9. egobbitz

    Using USB Wireless Device with new RH 9 Install

    Thanks for the help messages. I think I got the driver installed (not really sure since I have no Linux experience), but I see a message at startup that says something along the lines of unable to find?load? p80211.o Any ideas what I did wrong? Nick
  10. egobbitz

    Using USB Wireless Device with new RH 9 Install

    Hello, I am a Linux newbie, but with a willingness to learn. Getting tired of the easiness of windows, ready for a challenge. I am not technically illiterate, so I think I should be able to work with the world away from windows. With that said, I just installed Red Hat Linux 9 (dual boot...
  11. egobbitz

    sum variable number of rows

    Hi, I have a spreadsheet that I am inputting records into, including Date (multiple records, same date) , entry, time, dollar total, item count. I want to write a VBA routine that places the sum of dollar total, and sum of item count under that particular column. Then, after a blank line, I...
  12. egobbitz

    Link to text on same page

    Here are a couple of changes, but really, adding the anchor tags is easy. <td width=&quot;50%&quot; valign=&quot;top&quot; background=&quot;images/dotbg.jpg&quot;><p><font color=&quot;#666666&quot;><strong><font size=&quot;4&quot;>Abilitech Services</font></strong></font></p>...
  13. egobbitz

    HTML Email help needed.

    Does \n work with HTML? I thought you had to use <BR> to get a line break. I know that \n is an escape character, but I don't know if HTML recognizes that or not. Anyway, try <BR> to get a newline. Nick
  14. egobbitz

    Link to text on same page

    You can just write anchor tags to link to text within that page. At the top of your page you would put <A href = &quot;#Disability&quot;>Disability services</a> and where the section is on the page you would put an anchor tag with the name on it like so <A name = &quot;Disability&quot;> Text...
  15. egobbitz

    Subform Help

    I am not sure if this has been covered, I looked up Subform but couldn't see it. I have a form that I want to have a combo box that gets values from a table. I have a subform that lists the related records in another table based on the value in the combo box. I want the user to be able to...
  16. egobbitz

    JTable

    Make sure you comment out this line before adding the other line; tableView.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); I tried it and it worked. Nick
  17. egobbitz

    where &amp; how do you install(add) third party packages????

    How are you setting your classpath? What OS are you using? I am not sure what else to look at there. When you are compiling the program are you compiling from the same directory that the source code is in? There is one other thing you might want to try, just add a .; to your classpath, this...
  18. egobbitz

    where &amp; how do you install(add) third party packages????

    I think you need to append the new jar file to the existing classpath. If your classpathe is c:\j2skd1.4.2\lib and you place your new jar file in c:\j2sdk1.4.2\lib\ext\(new jar) then you would need to add that to your classpath, so that you would have classpath =...
  19. egobbitz

    Automatically sending an e-mail from access

    Create a report off of the query, and then use the DoCMD.sendObject to send the report via email to the recipient. I don't think you would want to send 233 emails at one time.
  20. egobbitz

    javac ?

    Sorry, I read another of your posts and see that you did install the sdk. You need to set your path statement to reflect your bin directory of the installation. I am not sure how to do that in win 2000, but in win xp you click in control panel, then system icon, then advanced, then environment...

Part and Inventory Search

Back
Top