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 Wanet Telecoms Ltd 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: Beracosta
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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
  6. 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...
  7. Beracosta

    Cookie problem

    Hi! I have a big problem. I want to check if a visitor of my page already has been there. And i want to do that by checking if the cookie "knife" is empty or not. I have tried the following command: if Request.Cookies("knife") == "" then else ...... lots of...
  8. Beracosta

    Reload a frame

    How should i do to reload a frame in asp / VBScript? pls help me James!!!!
  9. Beracosta

    Call a VBScript function with a button?

    How do i make a VBScript function to activate when i press a button. The button is written in a asp file and the function that will be called should empty the shopping basket. Can anybody help me with this? (I think that James can ;)
  10. Beracosta

    How should i write the code for my basket window?

    Hi! I sure hope that i'll get as good help that i have had on my other questions. I have this problem, i want the shopping basket to be in a frame so the customer always will see what the basket contains... but i can solve this... pls help me... this is the code for ShowBasket.asp: <html>...
  11. Beracosta

    code to check if a post contains a value, and increas it.

    I have a problem in my shopping basket. If i try to put a merchant in the basket and the merchant already is there, i get a error msg... but that isn't how i want it... i want it to increas the Quantity instead. Can u help me? The code i have now is: <% Dim oCmd Dim BasketID, MerchantID...
  12. Beracosta

    How do i automaticly give a customer a own ID ...

    I wanna now how i can give a custumer a own generated id and put it in a cookie so the custumer always has the same id when he/she comes to my page... can some one help me? (btw... the id should be stored in a database to) =)
  13. Beracosta

    How to Request a value from a form,

    I have a problem. I'm programming a homepage in asp with VBScript and databases. And i also have a shopping basket on it. And now to my problem, i have a file, AddToBasket.asp, that puts the merchant in the basket and i call it with: AddToBasket.asp?BasketID=...&MerchantID=...&Quantity=...

Part and Inventory Search

Back
Top