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: netooi25
  • Order by date
  1. netooi25

    javascript causing rendering problem in Firefox(works in IE)

    I made this a very generic sample of the problem I'm having... I have select boxes that contain month/day/year... There is a javascript function that reloads the correct number of days based on what month or what year is selected... It works fine in IE, but in firefox, whenever the javascript...
  2. netooi25

    help with Firefox rendering problem(works in IE)

    I made this a very generic sample of the problem I'm having... I have select boxes that contain month/day/year... There is a javascript function that reloads the correct number of days based on what month or what year is selected... It works fine in IE, but in firefox, whenever the javascript...
  3. netooi25

    ruby question about getting a date

    Hi, I'm fairly new to Ruby and need to get a date Basically I need to get the next wednesday stored in a date variable.. If today is wednesday then it would store today, otherwise it would keep going to the next day until it was wednesday... I tried a few little things using cwday which is...
  4. netooi25

    counting entries in an unbound control

    I also might should add I calculate the value of the txtDetail field in the detail_format event.. If this helps any
  5. netooi25

    counting entries in an unbound control

    hmm, it asks me to enter a parameter value for txtDetail, as if it doesnt recognize it is on the report is this because its in a different section on the report?
  6. netooi25

    counting entries in an unbound control

    I'll try to explain a basic example that will help me with what I need. In the detail section of a report, I have an unbound text box called txtDetail In the footer, I need to count the number of entries in the txtDetail box. If it was a bound control, I believe i could just use...
  7. netooi25

    can parent thread determine when a child thread finishes execution

    If i understand the join method correct, it will stop the current thread until the child thread finishes... This would be good but I may have up to four child threads and if I wait like that the other 3 other three child threads may finish before the one I waited on. I need to be able to detect...
  8. netooi25

    can parent thread determine when a child thread finishes execution

    Hi all, I'm relatively new to java...I havent used it all that often but I love the ease threads and synchronization.. I need to know if I create a chld thread to to a task, can I determine in the parent thread when child thread finishes executing? Can you give me some short code example of...
  9. netooi25

    question about extending the Socket class

    Hi, I got the idea I would extend the Socket class and provide a few more useful methods to it for my program... I am having a problem though. When I call the accept method of the ServerSocket class, It returns a Socket object instead of the subclass object. It compiles but this is causing a...
  10. netooi25

    extending the Socket class

    Hi, I got the idea I would extend the Socket class and provide a few more useful methods to it for my program... I am having a problem though. When I call the accept method of the ServerSocket class, It returns a Socket object instead of the subclass object. It compiles but this is causing a...
  11. netooi25

    displaying picture in OLE Object; need to detect a maximum size

    I have an Access form that I want to display a image in as an OLE Object. However, I want to be able to restrict the maximum size of the image (say to 100kb or something for example). Is there a way to check the size before displaying and if it is too large, then i'll give an appropriate...
  12. netooi25

    question about transferring data with vb.net

    If this helps with the description any, a customer will download this program from the company's website and run it on their own local computer.. There will be potentially lots of customers. They will use the program to select certain files and mark different options about those files.. The...
  13. netooi25

    Free Memory Space

    Microsoft has a help site on this error.. Perhaps it will help. http://support.microsoft.com/default.aspx?scid=kb;en-us;236977&Product=acc Netooi
  14. netooi25

    question about transferring data with vb.net

    Hello, I am developing an application in VB.net and I need to transfer some data from a client program over the internet. I have been exploring various ways to do this, but i'm not sure what would be the best way to approach this. The people I am developing it for suggested having the program...
  15. netooi25

    how to removing &nbsp from a string..

    I have a string that i get scanning a html file using the html::tokeparser however the string has two &nbsp characters at the end of the string sometimes.. I need to be able to remove these when they are present. Thanks for any help
  16. netooi25

    Is it possible to create a report from a pdf file?

    the question says it all.. I have a report i'm going to have to completely design from scratch in access and its going to be a very tedious task. I was just wondering if there is a way or if there are any tools to import a report from a pdf document into access as a report. It has to make the...
  17. netooi25

    help with a query

    sweet, thank you very much.
  18. netooi25

    help with a query

    i have a table called tblPeople in my database that keeps track of people. I use a autonumber field for a primary key.. I have a 2nd table called tblattendance with 2 fields. I was using PersonID(autonumber from tblPeople), Date as primary key in this table. I dont know if this is possible...
  19. netooi25

    question about a for loop

    Sorry, i think i do have it working now :).. must have just had a typo somewhere thanks a bunch Netooi
  20. netooi25

    question about a for loop

    Ok, got the recordset thing working like i need it using .fields I still cant get the debug.print me("id_" & lcounter).value working though to access the textbox on the report

Part and Inventory Search

Back
Top