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 Mike Lewis 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: *

  1. Beracosta

    show buttons in an applet

    how do i show the buttons that i create in an applet with this code? private JButton B1; private JButton B2; public void init() { // JApplet init with your code. B1 = new JButton("Button 1"); B1.addActionListener(new ButtonActionListener()); // reg B2 = new JButton("Button...
  2. Beracosta

    Buttons in applets

    Thanx. I already knew how to deklare the buttons but how will i make em show in the applet? pls help! /Björn Helin
  3. Beracosta

    Buttons in applets

    Hi! I have a problem. I wanna have 2 buttons in my applet. When u click on button 1 it should print a text in the applet. When u click on button 2 a singel line should be painted in the applet. I don't know how to get these buttons and how to register listeners for them. can anybody help me...
  4. Beracosta

    Inner classes

    ok. in the class MyFrame.java i wanna create a listener with the class CheckButtons that is a inner class in MyCanvas.java do u understand or should i describe more?
  5. Beracosta

    Inner classes

    But if i wanna call one of the innerclasses in another class? For an exampel if i wanna register a ActionListener on a button that is defined in a class and the listener is a inner class in some other class... how do i do that?
  6. Beracosta

    Upload a file with ASP

    I have a problem. i wanna uppload a file to the webbserver with an ASP file. I have a form that is used to insert a new merchant into a database and one of the fields in the form is used to specify the location of the picture. But i wanna change that so i can browse the hard drive and chose a...
  7. Beracosta

    Inner classes

    the constructor of the theCanvas class? ok thanx
  8. Beracosta

    Inner classes

    Hi everybody... i have a little problem with java. I have a application that contains alot of differnt classes. And in one of these classes i have a inner class. My question is: How do i call the inner class? The application is a "Drawing program". The class that contains the...
  9. Beracosta

    Move data from one table to another

    ok... i'll try it if i understand =). if i don't get it to work, could i mail the code to u so u can rewrite it like above? Björn
  10. Beracosta

    Move data from one table to another

    it worked very good. but i have another problem now... I also want a varible to be inserted into the table OrderContent. The varible should be inserted into the Field OrderID and the MerchantID and Quantity should be moved from BasketContent to OrderContent. Here is the code sofar: INSERT INTO...
  11. Beracosta

    Search the Database with asp

    i think i solved it now. i haven't tried it yet but i think i should use % instead of *....
  12. Beracosta

    Search the Database with asp

    should i'll post the whole search page? it isn't so much code...
  13. Beracosta

    Move data from one table to another

    thanx for the help. it worked fine!
  14. Beracosta

    Search the Database with asp

    it dosen't work.it just doesnä't display any thing! pls help!
  15. Beracosta

    Move data from one table to another

    I'm writing a ASP page (with VBScript) and the database is a Access database. i hope this answers your question. /Björn
  16. Beracosta

    Move data from one table to another

    Hi everybody! I want to move every thing in a table where BasketID = "the current id". And it should all be moved to another table. My problem is that only one of the enteries in the table gets moved, not all eneteries that have the same BasketID. Any help here? /Björn
  17. Beracosta

    Search the Database with asp

    Hi everybody! I want to have a search function on my page. The user types whatever he/she wants to find in a text box and the hits the button. I've tried everything to make this work and i thought that this would work: "SELECT * FROM Varor WHERE KortBeskrivning LIKE '" & strSearch...
  18. Beracosta

    Cookie problem

    I know that the cookie is beening set because when i display the value of the cookie with Response.Write Request.Cookies("knife") it shows the correct value, and it also shows the correct and the same value when i update the browser. But if i close the browser and then opens it again...
  19. Beracosta

    Cookie problem

    OK. Here is the code where the cookie is being set: Response.Cookies("kockkniv") = IDNum /Björn
  20. Beracosta

    Cookie problem

    it doesn't work win .HasKeys. When i do that, the page takes it like if there wasn't a cookie. grrrr. how should i do?

Part and Inventory Search

Back
Top