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

    using xp style icons is Vb.net help!

    hi im using vb.net and aximagelist control 6.0 and i can't load xp type icons on it,.gif files, help pls on how i can use xp type icons on my toolbar!, thanks!
  2. papaboy2

    using xp type icons in vb.net help!

    hi im using vb.net and aximagelist control 6.0 and i can't load xp type icons on it,.gif files, help pls on how i can use xp type icons on my toolbar!, thanks!
  3. papaboy2

    Database programming using OOP

    hi, i would like to ask wer i can find resources/tutorials and sample code of database programming using OOP method? thanks very much!
  4. papaboy2

    using substring, help

    hi, why is it that i can't use if statement on my WholeString Variable? but when i use Println it contains the "[" value?, line is a string variable where value is from input.readline() statement, i can't execute the statement inside if statement, thank you very much String MySam; MySam =...
  5. papaboy2

    Reading Text File

    how can i actually check if the line doesnt contain text? if if using the buffered reader? thanks
  6. papaboy2

    Reading Text File

    hi, how can i read a text file and remove blank space between two lines? how can i concat the first message and second message without putting the blank space between them. thank you very much. for example: [Message] This my message but the next message is between blank space Message is...
  7. papaboy2

    make the First Character of the string Uppercase

    How can i make the First character of the string to Uppercase? thanks very much!
  8. papaboy2

    Saving Byte data into text file

    hi i hava a code that ask the user for input, name, age etc and i want to save to my text file? thank you very much! how can i save it to a string? here is my code: byte name[] = new byte[100]; int nr_read = 0; System.out.println("What is your name?"); try { nr_read = System.in.read(name)...
  9. papaboy2

    Reading and appending to text file

    yep i can append but the problem is that the NEW data is appended right next to the last data appended, and not in the next line of the file, and also i want to retrieve multiple lines of data into single straight message, removing also with blank space between lines. thanks you sedj for your...
  10. papaboy2

    how can format entry in text file?

    hi, i would like to ask how can i format the data i will append in a text file, like when appending new data it will be in the next line of the file?, my code below concats the first and second text i inserted, thank you very much! BufferedWriter out = new BufferedWriter(new...
  11. papaboy2

    Reading and appending to text file

    hi how can i concatenate and removove blank space between two lines of data in a text file and also how can i append at the bottom, not overwrite the existing data? i have a [mes] part where the data is continued with a blank space, how can i display it in ony 1 straight line, using the...
  12. papaboy2

    what to use for calculation operation, help!

    i tried the code below but i encounter an error, LastValue is my Double variable and StrFirst is a string variable? StrFirst = CalcNumber.getText(); LastValue = Double.parseDouble(StrFirst);
  13. papaboy2

    what to use for calculation operation, help!

    ok thank you very much! i appreciate it
  14. papaboy2

    what to use for calculation operation, help!

    but i can't retrieve the value of the textbox and assign it in my double variable, so i used a string variable and convert it to double so that i can perform aritmetic operation, what should i do to get the value of the text field and perform aritmetic operation accurately using double...
  15. papaboy2

    what to use for calculation operation, help!

    hi i'm a novice in java and i want to know how can i accurately perform arithmetic operation when i'm using a double variable? becase when i assign a value for example of 100.3 it formats to 100.30000151... somthing, how can accurately use it? thanks! need help pls. here is my code; String...
  16. papaboy2

    formatting a double variable

    thank you very much! i appreciate ur help, just one more question how can i avoid my textfield not to receive the focus and not show the cursor it it? thank you again!
  17. papaboy2

    formatting a double variable

    hi, i want to ask how can i format a double variable so that it will hava a 4 decimal point to the right? thank you very much! here is my code:(LastValue is a double variable) LastValue = Float.parseFloat(CalcNumber.getText()); LastValue += FirstValue...
  18. papaboy2

    getting value of jtext field

    ok thanks very much, i appreciate ur help!
  19. papaboy2

    getting value of jtext field

    ok thanks very much, just a follow up question how can i assign a double variable to a text field? i received an error when i code the ff., just starting to use java :( sampleText.setText(DoubleVariable);
  20. papaboy2

    getting value of jtext field

    hi, i would like to ask how can i get the value of my text field and assign it to a double variable? thank a lot!

Part and Inventory Search

Back
Top