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 SkipVought 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: 786snow
  • Order by date
  1. 786snow

    LIKE related question

    Is it possible to have OR with LIke, I am trying to do the following , whcih is obviously wrong as it is not working select* from products, where category_id = 'ph100' and features_camera LIKE '%2%' or '%3%' order by auto_no desc LIMIT 0,10
  2. 786snow

    never seen this kind a syntax before

    It is innner class .... To create an object of inner class we do something like this OuterClass.StaticNestedClass nestedObject = new OuterClass.StaticNestedClass(); Now in the code below UserAccountList.AccountData userAccountListData = UserAccountListProxy.setUserAccountList(...
  3. 786snow

    never seen this kind a syntax before

    Hi , I have never seen this kind a variable type UserAccountList.AccountData, whats is going on here ? UserAccountList.AccountData userAccountListData = UserAccountListProxy.setUserAccountList( req, res, userIDStr, sessionIDStr, null...
  4. 786snow

    basic constructor question

    thanks a lot for your help ........ I understand now
  5. 786snow

    IP address

    Hi, My machine is part of the network, how can find out what my ip address is? I am using XP Thanks
  6. 786snow

    basic constructor question

    Hi, what am i doing wrong here. I have couple of variable in the constructor but when try to print them i get errors public class HelloWorldApp2 { HelloWorldApp2 (String var1, int var2){ String instanceVariable1 = var1; int instanceVariable2 =var2; } public static void main(String...
  7. 786snow

    javascript to read a text file

    Hi, Is there a simple way read a simple text file using javascript? and then displaying the content of that file?
  8. 786snow

    need help in understanding exceptions

    Hi, I am trying to understand how exception work. I understand the code below. try { BufferedReader in = new BufferedReader(new FileReader("infilename.txt")); String str; while ((str = in.readLine()) != null) { //process(str)...
  9. 786snow

    simple javascript/css question

    thank you :-)
  10. 786snow

    simple javascript/css question

    How can I use javascript and css to change the background color of my text box I tried the following that did not work .textHilight { background:00BFFF; } <input type="text" class="textbox" name="toDate" id="toDate" size=10 maxlength=10 value=> document.getElementById('toDate').class=...
  11. 786snow

    need help in understanding exceptions

    I am trying to understand how exception work. I understand the code below. try { BufferedReader in = new BufferedReader(new FileReader("infilename.txt")); String str; while ((str = in.readLine()) != null) { //process(str); System.out.print("it did not...
  12. 786snow

    constructor basic question

    public class HelloWorldApp1 { //delaring constructor public HelloWorldApp1() { int grade1=7; } .... Hi, if I have a constructor in my programe now how can I access the value of grade1. When in my method if I do System.out.print(grade1); i get error
  13. 786snow

    java basic comiling question

    in my \jdk1.5.0_06\bin where I have javac I made another folder in bin called MySamples now in the bin folder i do the following javac \MySamples\HelloWorldApp.java I get the error saying "can not read \MySamples\HelloWorldApp.java what am i doing wrong here?
  14. 786snow

    radio button don't work properly

    thanks for the code ...good point I forgot to create an array all you need is the name to be same, not the id ........
  15. 786snow

    radio button don't work properly

    what is wrong with the code here, no matter what radio button I pick, even if I don't pick any I get the value "by_date" <script> function submitRequest() { var test=document.getElementById('dateType').value; alert(test); } </script> <html> <head> <meta...
  16. 786snow

    regex in javascript validation

    you are right, it worked, i must have deleted something else by mistake previously.......... thanks
  17. 786snow

    simple date object question

    thanks a lot again, it worked great
  18. 786snow

    regex in javascript validation

    Hi, i know a little about regex. Following Regex is for date to have the following patteren, mm/dd/yyyy or mm-dd-yyyy or mm.dd.yyyyy I want to have it only mm/dd/yyyy So i want to chnage it , i believe I have to change it at all place where it has (\/|-|\.)?? I did the following (\/)...
  19. 786snow

    simple date object question

    Hi, Thanks i did not know about the MVP sysytem, from now on I will. Infact I already gave both you guys star. I am pasting my code, their is wierd stuff you will notice if you run it, if you pick your date from the calander and click on submit button, I break that into year , month and day...
  20. 786snow

    simple date object question

    what this Date object suppose to have , when I alert , it gives me wrong month, gives me July instead of June. <script> birthday = new Date(2007,06,03) alert(birthday); </script>

Part and Inventory Search

Back
Top