How can i add & update records in a database by using text feild & buttons

i ,ve a difficulty to make an application which should add,retreive,update,find&delete records to a database in SQL server2000.
how can i do it easily plz reply me as soon as possible.

Your question is WAY too broad. People are here to help with problems, not write programs for you. Do you know anything about AWT? Swing? JDBC? SQL? Databases? If not, I suggest you start working with the Tutorials to the left side of this page and come back when you have a specific question.

Similar Messages

  • How can I add a stroke to only one side of text?

    How can I add a stroke to only one side of text characters?

    I'm probably misunderstanding what you want, so I'll just ask. Is this it?

  • HOW CAN I ADD/UPDATE/INSERT IN A USER TABLE WITH MATRIX

    Hi All,
    I have one User table (Defined as No Object) and what i need to do is a form with a matrix to Add/Update/Delete data in my user table.
    I already create the form and the matrix that already give me the user table data. But now i have several problems to solve.
    First I try to add a new row but this new row get the data of the last row in the matrix. What i needed is a blank row to add new data in the user table.
    Second, when i change data in matrix and do update in the form, sap show me the message that the operation is successfully done but the data in the user table in not updated.
    I am trying to do one forma like whe can find in Setup-> General -> Freight.
    Can anyone help me?
    Best Regards,
    Luis Duarte

    Hi,
    If ur dealing with a simple form like that U can as well use the direct table form, and just provide a FMS to auto matically fill the code and name. U can directly use the form by.. Tools-->UserDefined Windows
    Or
    Comming to ur problem.... when ur adding a new row clear the data sources so that u'll get a blank row.
    And for update the best thing to do is delete all the records in the table and again insert all the records directly from the matrix.
    Hope it helps,
    Vasu Natari.

  • How can i add update signed jar file

    I am developing an applet which requires signing to run in a browser.
    I am developing supporting classes. But these class files have to be added
    to the jar. Isnt it??
    But to test the applet i need to load it in the browser each time i modify the class files. So the jar file need to be updated every time. But an
    IOError
    is being displayed when i try to update the signed jar file.
    How can i update signed jar file?? Or is there any othe way to test the signed applet during development??

    How can i update signed jar file?You can't, the signature is there to make sure the content of the jare hasn't been messed
    with.
    Either recreate the jar and re sign it or set up a policy during testing.

  • How can I add update information/notification of 3rd party software (like Adobe Reader) in my C# des

    Hi,
    I have a C# desktop application which will keep track of my installed software(in my PC). I want to make this application more smart, like when the update version of the installed software will come in internet site, the application will notify me and I can update from my C# application, without login or open website.
    For example, I have installed MS Office 2013, Adobe Reader 1.1. So when Adobe Reader 1.2 comes in internet, my application will notify me and I can update that from that application.
    Can anyone please answer my question, how can I do that?
    Thank you !

    Well, each app will be different. You will need detailed research. In some cases the process will be opaque or undiscoverable. For Adobe Reader you might find the Enterprise Deployment documentation relevant.

  • I forgot my Apple ID password and security question. Also the email I'd is not accessible as the organisation has stopped their email service. How can I now update my applications which I downloaded using this Apple ID. Please help

    I forgot the password of my Apple ID that I used for downloading apps when I newly bought my mac book back in 2011 October.
    Now I forgot the password and also the security question.
    Also the email service provider has stopped their email service and hence m not able to use email authentication as well.
    Now I am lost, how will i update the applications that I downloaded using this Apple ID.
    Please help

    Saunakhvshg,
    contact Apple directly.

  • How can I add a password request when I push on the Mail button ?

    Hi,
    I want to secure the access to my emails on my iphone, because anyone can read them when they got my iphone. How can I secure this ?
    I mean the easiest is to ask for a password when you push the Mail button or the SMS one.
    Someone know how to do that ?
    Thanks for your help.

    This is not supported with the iPhone but who has access to your iPhone that would take the liberty to check your email accounts and SMS messages when using it?
    My iPhone is never out of my sight but if lost or stolen, I have my iPhone password protected which prevents access to any iPhone functions.

  • How can I add 2 variables that are entered via input text/number type

    So I have created 2 text fields via composition ready
    $("<input type='text' value='' name='input1' id='input1' size='5'>").appendTo("#Stage");
    sym.$("#input1").css({"position":"absolute","top":"70px", "left":"52px"});
    $("<input type='text' value='' name='input2' id='input2' size='5'>").appendTo("#Stage");
    sym.$("#input2").css({"position":"absolute","top":"90px", "left":"52px"});
    input1 AND input2.
    The user then puts a number in each field.
    I have a 3rd field created to hold the answer. I also made a text field with the name "scorefield" to see if that would work, either will do.
    Then on a button on the stage, the user clicks on it to add those first two numbers together and have the sum appear in the 3rd field or the text field that has the symbol name "scorefield".
    However I can not seem to be able to add the 2 values of the text fields. On the submit button I have:
    var number1 = $("#input1").val();
    var number2 = $("#input2").val();
    var additionresult = number1 + number2;
    sym.$('scorefield').html(additionresult);
    answer1.value = additionresult;
    The problem is that it is NOT adding number1 and number2 together!
    If I substitute + for - or / or * it works using those symbols, but if I try to use the plus sign and add the two, it does not work and instead physically adds the numbers next to eachtoher.
    So If I were to put a 5 in field one, and a 2 in field 2, the result comes out to be 52...instead of adding the two values, it places them next to eachother.
    I know those ARE numeric values because any other mathamatical sign works. I can multiplay, subtract and divide those two numbers. I can even check to se if its higher or lower of a value using > or <.
    But when I use the + sign, it breaks.
    Is there some other sign I must use to add two values?

    Sorry I forgot to change the string to a integer earlier. Here it is corrected.
    file here: https://app.box.com/s/mulkhd1rlyyafovqc3od
    var input1 = sym.$("input1")
    input1.html("number1: ");
    userInput1 = $('<input />').attr({'type':'text', 'value':'', 'id':'input1'});
    userInput1 .css ('font-size', 28);
    userInput1 .css ('width', 50);
    userInput1 .appendTo(input1);
    var input2 = sym.$("input2")
    input2.html("number2: ");
    userInput2 = $('<input />').attr({'type':'text', 'value':'', 'id':'input2'});
    userInput2 .css ('font-size', 28);
    userInput2 .css ('width', 50);
    userInput2 .appendTo(input2);
    sym.$('btn').click(function(){
    var number1= userInput1.attr('value');
    var number2= userInput2.attr('value');
    var Numone = parseFloat(number1);
    var Numtwo = parseFloat(number2);
    var answer = Numone + Numtwo;
    sym.$('result').html(answer);

  • How can you add a new connection to SAP GUI using a domain logon script?

    We have two new SAP connections and over 1100 computers to add it to.  The computers are on a domain, and using logon scripts. Can someone help me create a script to add connections to the SAP Logon.

    Hello,
    please make the neccessary entries in your own SAPLOGON...
    and then deploy the file  SAPLOGON.ini  from your client to all other client
    via the logon script...
    Or, and that is what we ( SAP ) recommend, you can use the SAP FRONTEND ÌNSTALLATION SERVER.
    Best regards, Sven

  • How can I add a character to the end of any text that is entered into a fillable field?

    I am creating a fillable PDF in the form of a business letter.  To start the letter, the form has Dear [fillable field for name].  I need a script that will enter a colon after the person inputs their name.  I have an Acrobat JavaScript scripting reference guide, but do not know where to start.
    Thanks in advance.

    Use this script as the field's custom format code:
    if (event.value) event.value+=":";
    On Wed, Oct 15, 2014 at 9:10 PM, itjmmurray <[email protected]>

  • How Can I connect to a Microsoft Access Database without using LiveCycle?

    I have Acrobat Professional X. And I need to read a Microsoft Access Database. I don't have LiveCycle Form. Is there any way that I can connect to my database?

    You are in the wrong forum, mate. This is a forum for ColdFusion.

  • How can I call multiple records(40) at same time as webservice ?

    Hi All
      My scenario is some thing like calling SOAP(Webservice) to Rfc(BAPI)
      Thing is how can i call multiple records at the same time using the SOAP
       adapter i.e i need to make a request to BAPI and in the BAPI response
       based on the fields, i need to send to different records....it is Sync call
    Can any explain me how to implement this scenario ?
    Regards
    Kiran lvs

    HI,
    Please see the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/42/ed364cf8593eebe10000000a1553f7/content.htm
    Regards
    Chilla..

  • How can I add a new record in an Access table.

    How can I add a new record in access with LabView, using activex, without using the database connectivity tools.
    Message Edited by Noawena on 05-16-2008 09:25 AM

    Much easier with a toolkit but you could use ADO objects,
    get connection, make a SQL object "INSERT record INTO table where  ...." 
    Execute the parameterized query
    Free up record sets data
    close connection when done.
    This is a very simplified version
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • How can I add new content in iDVD to a DVD-RW disc which has ample remaining free space? After preparing the new video for burning and clicking on Burn to iDVD, I get a window saying the disc's already recorded and that I can either Erase or Eject.

    How can I add new content in iDVD to a DVD-RW disc with a video previously successfully recorded on it? (The disc has ample remaining free space.)
    After preparing the new video for burning and clicking in the File menu on Burn to iDVD, I get a window saying the disc's already recorded and that I can either Erase or Eject. My assumption has been that iDVD would automatically find the free space and continue with the new recording from there. I'd be grateful if anyone can shine light on this.

    There are, but not with a DVD written as a movie disk. It must be closed when completed, or it doesn't work.
    Apple's built in Burn utility also automatically closes any data CD, DVD or Blu-ray disk you burn. Doesn't matter how much space is unused, you can't use it. You'd have to use a more advanced disk creation app, such as Toast Titanium. I then have the option of choosing to write the data as a session:
    I can keep doing this until the disk is full. If I've written five sessions to the disk, when I put it in the drive, five CD/DVD icons will appear on the desktop since the OS will treat each session as if they are separate physical disks. At any point you choose Write Disk when writing a group of data, that means you're closing the disk, and again can't add anything after that. So if I had written two sessions, and the third was Write Disk, it's over. I can't put anything else on that disk.

  • I used to be able to attach a document to an iCal entry.   After the latest update, it appears this option has been removed.  How can I add an attachment now?  Thanks!

    I used to be able to attach a document to an iCal entry.   After the latest update, it appears this option has been removed.  How can I add an attachment now?  Thanks!

    Hi Dan,
    Yes, iCal 4.0.4 (1395.7). In edit mode, the 'attachments' option is between 'Invitees' and 'URL' (see below). As I said this is for calendars under On My Mac, I suspect you are not seeing this as your event is on MobileMe.
    Best wishes
    John M

Maybe you are looking for