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

    Maskformatting HELP

    thanks ppl but i tried a million ways and still, nothing. I have been trying to do the masking in this code piece but do you think i should rewrite how i create the texfields? And btw just a small question; i created a normal Jbutton, then tried to add a .gif image to it...isnt't this how its...
  2. yigit

    Maskformatting HELP

    Hi everyone, I read the info on: http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/text/MaskFormatter.html, about masking a textfield. Unfortunately i didn't plan to mask the textfields beforehand so i created the textfields as such; The last 2 textfields(fields[3]and fields[4]) will have...
  3. yigit

    Questions

    I'm really new but i use 'JBuilder 2005 Enterprise'. I fiddled with NetBeans 5.0 for a while and it looked like a dream come true in GUI handling but later i felt that control was better in JBuilder. So i suggest Jbuilder. What is the difference between Eclipse and Jbuilder anyway?. something...
  4. yigit

    SQL Problems

    I know i bother you ppl with all this small, insignificant questions but to be a fisherman, first you have to know what a fish is:)(I learned how to catch it:D). In my position im like a person who woke up in the middle of the sea remembering nothing and trying to fish;).
  5. yigit

    SQL Problems

    thanks feherke.. it works now...thanks everybody for their help.
  6. yigit

    SQL Problems

    i checked but that site wasnt explaining alot of information. After checking a while i found that i have to first fetch a row then delete it but it doesn't sound right. Is there no way to delete a specific row where the user inputs the row's ID to be deleted. I'm really stuck here in this small...
  7. yigit

    SQL Problems

    hi everyone, I'm trying to delete a row with a certain IDnumber names 'IDtoDelete'. My delete part seems not to work; is something missing?(IDtoDelete is read from a textfield as a string); public void DeleteFrom(String IDtoDelete) { try { deleteStmt = con.prepareStatement(...
  8. yigit

    Problems with Database operations in Java

    i forgot to say,, sql is supposed to be used for connection thanks
  9. yigit

    Problems with Database operations in Java

    Hi everyone, i tried to do 2 operations on a database table; insert and delete. There are several textfields requesting name, lastname etc. When these fields are filled, it should insert the data to the appropriate columns of a row in the table. Delete should delete the current row elements in...
  10. yigit

    how to add textfields properly

    Im really sorry to bother you guys with these questions. I tried to make 2 textfields one on top of the other reading name and last name, (I tried to put labels defining each textfield but gave problem) with two buttons insert and delete at the bottom. This code puts all in one line...Why?thank...
  11. yigit

    Adding functionality to the Calculator

    thank you sedj for your valuable critism. You are correct, i was wrong to put all the code and demand an answer but please try to think of it from my way. I have no java background, i am thrown in the middle of the java in to the GUI stuff without having any prior java knowledge and i have...
  12. yigit

    Adding functionality to the Calculator

    i wondered what 'gomb' was:), anyway is the problem so hard. Its hard for me since im very new to this subject but the code should be reasonably easy to understand..I really need to know how i am to solve this problem between the two parts.
  13. yigit

    Adding functionality to the Calculator

    thank you feherke but i forgot to give you my calculations part.The problem is to make the calculator respond to both mouse and keyboard and how do i connect this and the first part which is main..thanks to everyone in advance package func; import java.awt.*; import java.awt.event.*; public...
  14. yigit

    Adding functionality to the Calculator

    Please help how i can add functionality to this...How can i make the buttons respond to mouse clicks. thanks for your time.i used gridbaglayout by the way. package ui; import func.*; import java.awt.*; import javax.swing.*; public class CalcMainFrame extends JFrame { final static...

Part and Inventory Search

Back
Top