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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by egobbitz

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

Part and Inventory Search

Back
Top