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!

Search results for query: *

  • Users: papaboy2
  • Content: Threads
  • 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

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

    make the First Character of the string Uppercase

    How can i make the First character of the string to Uppercase? thanks very much!
  7. 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)...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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!
  13. papaboy2

    how to put and detect events in my grid

    hi, how can i put click event to my java application if i'm using the gridbaglayout , how can i detect the button("C") was click from other button and execute the event, i'm a novice in java, thanks very much, here is my code: button = new JButton("C"); if...
  14. papaboy2

    how to use text field

    hi, how can i make the alignment of my jtextfield to right? like the display in a calculator? i'm just a novice in java and making my exercise, thanks, and also how can i use the grid layout to divide my window into number buttons, thank you very much.
  15. papaboy2

    using the "/n" syntax, help

    hi, i'm a novice in java and my problem is i want my output string formatted like the one below, but my output using the /n is, it shows the /n string and the string is continous. i want the "reasons:" text to be in the next line. here's my code: sOrderStatus = "Sorry, your order cannot be...
  16. papaboy2

    error when i used the implements keyword

    hi, i always encounter an error when i try to compile a java application that use implements keyword. first it works fine then when i used it again on my next file it generates an error always even if i copy and paste it from my first java app to the new java app. help pls. thank you. here is...
  17. papaboy2

    error when i use the implements keyword

    hi, i hava an error when i used the implements method, even if i have only this amount of code, help pls, thanks! here is the code(i'm using freeware jcreator in coding java), error points in line 5: 1: import javax.swing.*; 2: import java.awt.*; 3: import java.awt.event.*; 4: 5: public class...
  18. papaboy2

    about sorting of records

    hi, i would like to ask if possible and if, how can i make my report generate a ramdom sorting of records everytime i print or refresh the report. for example i have only 2 columns an id and description and i want to randomize the order of records everytime i print/refresh it. thanks a lot! i'll...
  19. papaboy2

    formatting numbers, cstr

    hi, how can i format a string for example Fax_Column containing the string "123456789" to a format of "000-000-0000"? i used the cstr(Fax_Column,"000-000-0000") format but error occurs, please help thanks a lot!
  20. papaboy2

    Concatenating String and Variables

    hi, how can i concat a string and variable without displaying a single quote between them. the code below is concatenating "DATE" string and the text property of textbox. but when the report displays, it gives an output of "DATE '2004/01/02", when i try to remove one quote it generates and error...

Part and Inventory Search

Back
Top