Help! Need to locate a savy programer

I have a project that is too big for my expertise. I need to
find someone who can work with me in completing the project. Must
know flash, flash remoting, coldfusion and dreamweaver.
Thanks.

Re: Help I need to locate a driver for my soundblaster li've 24 bit soundcard? I guess you and your son are currently using windows xp. Well, what you can do is now is ignoring the WQHL pop-up window and choose the "install anyway" option during the installation of the soundcard driver, since WQHL only means the driver is tested by Microsoft and nothing more; drivers without the WQHL qualification does not mean they are bad drivers, they usually works as good as the WQHL ones.
Ofcourse you can also download the official drivers for the mentioned Soundblaster li've 24bit at Creative Labs support/download site.
here is it:
[url="http://uk.europe.creative.com/support/downloads/download2.asp?MainCategory=&Product=035&dlcentric= 025&Product_Name=Li've%2+24-bit&filetype=&OSName=Windows+XP">Creative Sound Blaster Audigy Value/SE/LS and Sound Blaster Li've! 24-bit XP and Windows Vista Pack .04.0077 (63.39 MB)?[/url]
The driver is for all Soundblaster Audigy Value, SE, LS and Soundblaster Li've 24bit, since they are all based on the CA-006 soundchip (with other words Creative Labs renamed the soundcard several times). Also this driver should be WQHL-ed (if not, choose "install anyway" option during installation of the soundcard driver). Make sure you have uninstalled the older driver before installing the new one. For troubleshooting use utilies like "Driver Cleaner" or "Driver Sweeper" (google for Guru3D and go to the site and their download section to get the utilities/tools) to clean up the junk files of the older driver that are left in the Windows OS.
Good luck and Merry Christmas!!!
Message Edited by CTman on 2-26-2008 0:2 [email protected]

Similar Messages

  • Help needed to located my brand new ipad!

    Hello guys,
    My brand new ipad has been stolen by some baggage guy in the airport.
    The device has never got the chance to be power on by me, so all the stuff "Find me" has never been activated.
    The only information that I have is its serial number.
    Is there any choice or way could help me to located the device? What should I do?
    Many thanks for your reply!

    Thanks
    Yes i've called the airport, they just noted this point, but for the moment, they can do nothing about.
    I haven't yet called the police side, but not for the sure that I would help either, as ipad mini will not that valuable comparing to other cases, low attention will be paid on my case, but anyway, I'll call them.
    For for the forum reader, a remind, don't EVER EVER leave valuable stuffs in your checked baggage when you take plane, always take it in your cabin baggage.

  • Help needed creating a linked list program

    I have been trying to create a linked list program that takes in a word and its definition and adds the word to a link list followed by the definition. i.e. java - a simple platform-independent object-oriented programming language.
    the thing is that of course words must be added and removed from the list. so i am going to use the compareTo method. Basically there a 2 problems
    1: some syntax problem which is causing my add and remove method not to be seen from the WordList class
    2: Do I HAVE to use the iterator class to go thru the list? I understand how the iterator works but i see no need for it.
    I just need to be pointed in the right direction im a little lost.................
    your help would be greatly appreciated i've been working on this over a week i dont like linked list..........
    Here are my 4 classes of code........
    * Dictionary.java
    * Created on November 4, 2007, 10:53 PM
    * A class Dictionary that implements the other classes.
    * @author Denis
    import javax.swing.JOptionPane;
    /* testWordList.java
    * Created on November 10, 2007, 11:50 AM
    * @author Denis
    public class Dictionary {
        /** Creates a new instance of testWordList */
        public Dictionary() {
            boolean done=false;
    String in="";
    while(done!=true)
    in = JOptionPane.showInputDialog("Type 1 to add to Dictionary, 2 to remove from Dictionary, 3 to Print Dictionary, and 4 to Quit");
    int num = Integer.parseInt(in);
    switch (num){
    case 1:
    String toAdd = JOptionPane.showInputDialog("Please Key in the Word a dash and the definition.");
    add(toAdd);
    break;
    case 2:
    String toDelete = JOptionPane.showInputDialog("What would you like to remove?");
    remove(toDelete);
    break;
    case 3:
    for(Word e: list)
    System.out.println(e);
    break;
    case 4:
    System.out.println("Transaction complete.");
    done = true;
    break;
    default:
    done = true;
    break;
       }//end switch
      }//end while
    }//end Dictionary
    }//end main
    import java.util.Iterator;
    /* WordList.java
    * Created on November 4, 2007, 10:40 PM
    *A class WordList that creates and maintains a linked list of words and their meanings in lexicographical order.
    * @author Denis*/
    public class WordList{
        WordNode list;
        //Iterator<WordList> i = list.iterator();
        /*public void main(String [] args)
        while(i.hasNext())
        WordNode w = i.next();
        String s = w.word.getWord();
        void WordList() {
          list = null;
        void add(Word b)
            WordNode temp = new WordNode(b);
            WordNode current,previous = null;
            boolean found = false;
            try{
            if(list == null)
                list=temp;
            else{
                current = list;
                while(current != null && !found)
                    if(temp.object.getWord().compareTo(current.object.getWord())<0)
                        found = true;
                    else{
                    previous=current;
                    current=current.next;
                temp.next=current;
                if(previous==null)
                    list=temp;
                else
                    previous.next=temp;
                }//end else
            }//end try
            catch (NullPointerException e)
                System.out.println("Catch at line 46");
        }//end add
    /*WordNode.java
    * Created on November 4, 2007, 10:40 PM
    *A class WordNode that contains a Word object of information and a link field that will contain the address of the next WordNode.
    * @author Denis
    public class WordNode {
        Word object;//Word object of information
        WordNode next;//link field that will contain the address of the next WordNode.
        WordNode object2;
        public WordNode (WordNode wrd)
             object2 = wrd;
             next = null;
        WordNode(Word x)
            object = x;
            next = null;
        WordNode list = null;
        //WordNode list = new WordNode("z");
        Word getWord()
            return object;
        WordNode getNode()
            return next;
    import javax.swing.JOptionPane;
    /* Word.java
    * Created on November 4, 2007, 10:39 PM
    * A class Word that holds the name of a word and its meaning.
    * @author Denis
    public class Word {
        private String word = " ";
        /** Creates a new instance of Word with the definition*/
        public Word(String w) {
            word = w;
        String getWord(){
            return word;
    }

    zoemayne wrote:
    java:26: cannot find symbol
    symbol  : method add(java.lang.String)
    location: class Dictionary
    add(toAdd);this is in the dictionary class
    generic messageThat's because there is no add(...) method in your Dictionary class: the add(...) method is in your WordList class.
    To answer your next question "+how do I add things to my list then?+": Well, you need to create an instance of your WordList class and call the add(...) method on that instance.
    Here's an example of instantiating an object and invoking a method on that instance:
    Integer i = new Integer(6); // create an instance of Integer
    System.out.println(i.toString()); // call it's toString() method and display it on the "stdout"

  • Help needed in executing pl/sql programs

    hi all
    iam new to PL/SQL programming
    i have installed oracle 9i
    iam trying to practice some sample pl/sql programs
    i have opened oracle 9i and typed these commands
    sql>ed sum
    then a notepad opens where i type my pl/sql program and save it and then return back to oracle 9i and type this
    sql>@ sum
    then my pl/sql program gets executed.......but iam not getting any output
    its comig as procedure implemented succesfully
    is it compulsory to open notepad to execute pl/sql progams or we can direclty type the programs in oracle 9i
    please help in this matter ASAP
    Regards
    Suresh

    Yes, you can type the program directly at the SQL prompt, but editing will be a bit difficult.
    You should use some good editor that allows you to edit properly and then run like you did.
    You need to do:
    SQL> set serveroutput onbefore running your program to see dbms_output messages.

  • Help needed to write a dialog program

    Hello ABAP Gurus,
    I am very much new to ABAP Programming.
    Can anybody help me to write a simple Dialog Program ??
    I have a database table.
    I have created a screen with screen painter, and kept some input fields & a push button in it.
    I want to fill the database table with the data entered into the fields on the screen.
    When the user enters the data and  presses  the PUSH BUTTON then that data record should be stored into the Database table.
    So what kinda code I have to write in PAI (Process After Input),  to achieve this functionality ??
    The help will be greatly appreciated.
    Thanks in advance
    Best regards
    Ravi
    Edited by: Ravi Kiran on Oct 28, 2009 2:17 PM

    It's easy:
    In PAI you have do an insert into a database table, following the steps:
    1.on PAI  create a module: for exemple Zwrite_table.
    2. inside Zwrite_table code as follow:
    move var1 to wa_table-var1.
    move var2 to wa_table-var2.
    move var3 to wa_table-var3. etc etc
    insert table ztable from wa_table.
    P.s. ztable is a database table.
    wa_table is a structure that have the same structure of ztable.
    var1 var2 var3 etc is a variable inside your dynpro.
    regards,
    Roberto.

  • Help NEEDED!!! - Quiz Program

    Doing a Java project, writing a Quiz program basically got multiple screens and using a Buffered reader which loads a txt folder, at the moment it reads the questions and allows u to skip questions on all 4 buttons, i know need it to count up the correct answers and have a final score etc.
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.StringTokenizer;
    import javax.swing.*;
    public class Main extends JFrame implements ActionListener
         private JButton button, buttonAns1, buttonAns2, buttonAns3, buttonAns4;
         private JPanel panel, panelAns, panelAns1, panelAns2, panelAns3, panelAns4;
         private JLabel labelTitle, labelName, labelQ1;
         BufferedReader inFile;
         boolean start =true;
         String answer = null;
         int noOfQuestions = 0;
         Main myMain ;
         MusicQuiz myMusicQuiz;
         Levels myLevels;
         public Main()
              String name;
         name = JOptionPane.showInputDialog(null,"Please enter your Name!");     
              JOptionPane.showMessageDialog(null,"Welcome " + name);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              Container c= getContentPane();
              setSize(700,600);
              panel = new JPanel();
    panel.setLayout(new GridLayout(5,1));
    panel.setSize(600,400);
              c.add(panel);
              labelTitle = new JLabel("MTV's Quiz Star");
              labelTitle.setHorizontalAlignment(JLabel.CENTER);
              panel.add(labelTitle);
              labelTitle.setFont(new Font("Tahoma",Font.BOLD,48));
              labelTitle.setForeground(Color.orange);
              labelName = new JLabel("User: "+ name);
              labelName.setHorizontalAlignment(JLabel.CENTER);
              panel.add(labelName);
              labelName.setFont(new Font("Tahoma",Font.BOLD,14));
              labelName.setForeground(Color.darkGray);
              labelQ1 = new JLabel("");
              labelQ1.setHorizontalAlignment(JLabel.CENTER);
              panel.add(labelQ1);
              labelQ1.setFont(new Font("Tahoma",Font.BOLD,24));
              labelQ1.setForeground(Color.darkGray);
              panelAns = new JPanel();
              panelAns.setLayout(new GridLayout(2,2));
              panelAns.setSize(600,400);
              panel.add(panelAns);
              buttonAns1 = new JButton("");
              buttonAns1.addActionListener(this);
              buttonAns1.setForeground(Color.darkGray);
              panelAns.add(buttonAns1);
              buttonAns2 = new JButton("");
              buttonAns2.addActionListener(this);
              buttonAns2.setForeground(Color.darkGray);
              panelAns.add(buttonAns2);
              buttonAns3 = new JButton("");
              buttonAns3.addActionListener(this);
              buttonAns3.setForeground(Color.darkGray);
              panelAns.add(buttonAns3);
              buttonAns4 = new JButton("");
              buttonAns4.addActionListener(this);
              buttonAns4.setForeground(Color.darkGray);
              panelAns.add(buttonAns4);
              setSize(600,400);
              show();
              countQuestions();
              readQuestions();
         public static void main(String[] args)
                   Main myMain = new Main();
         public void countQuestions()
              try
                   String line;
                   inFile = new BufferedReader(new FileReader("Questions.txt"));
              try
                   while ((line = inFile.readLine()) != null)
                        noOfQuestions++;
                   inFile.close();
              catch(Exception e)
         catch (FileNotFoundException e)
              System.out.println("File - Questions.txt - File Not Found");
              private void readQuestions()
                   int number = (int)(Math.random() * noOfQuestions);
                   if(start == true)
                   start = false;
              try
                   inFile = new BufferedReader(new FileReader("Questions.txt"));
                   String line = null;
                   for(int loop =0;loop < number;loop++)
                        line= inFile.readLine();
                   StringTokenizer parts = new StringTokenizer(line,"|");
                   labelQ1.setText(parts.nextToken());
                   buttonAns1.setText(parts.nextToken());
                   buttonAns2.setText(parts.nextToken());
                   buttonAns3.setText(parts.nextToken());
                   buttonAns4.setText(parts.nextToken());
                   answer = parts.nextToken();
                   inFile.close();
              catch (Exception e)
              /* (non-Javadoc)
              * @see java.awt.event.ActionListeneractionPerformed(java.awt.event.ActionEvent)
              public void actionPerformed(ActionEvent arg0)
                   if (arg0.getSource()==myMusicQuiz)
                        if(myMusicQuiz==null)
                             myMusicQuiz= new MusicQuiz();
                        else show();
                   if (arg0.getSource()==myLevels)
                        if(myLevels==null)
                             myLevels= new Levels();
                        else show();
                   if(arg0.getSource() == buttonAns1)
                        readQuestions();
                   if(arg0.getSource() == buttonAns2)
                        readQuestions();
                   if(arg0.getSource() == buttonAns3)
                        readQuestions();
                   if(arg0.getSource() ==buttonAns4)
                        readQuestions();
    }

    In case you're wondering if someone is going to do it for you, I'd guess No. So if you're still sitting there on your hands you might want to do something about it instead.

  • Help needed on to write a program on connecting to data source

    I would to program a class that connect to data source without any manually configure.
    Is there other way that i could use intsead of using
    db = DriverManager.getConnection("jdbc:odbc:Driver={SQL Server};Server=MyServerName;Database=MyDataBase","","");
    My project requires me to use JDBC-ODBC Bridge on connecting to data source on client machine
    Is there any other way?

    Oh, oh,
    why???
    It's so simple to do a JDBC connection using the same connection params, which you use for your VB program's connnection.
    If your VB prog uses a system or user DSN configured via control panel, then use the same DSN in your Java prog.
    Dear karentan,
    you have just the same question now active in 4 or 5 different topics. And I and others have not been able to understand what really is your problem, I fear.
    Would you please do two things:
    1) Start a new topic (yes, another one!) and tell us there what exactly is your problem. What do you want to do?
    Not: is it possible ... but: I want ...
    2) Go to all the other topics you spreaded here and post the link of your new topic there, so that the poor people who try to answer your 5 (always the same) questions know that they can spare their time.
    Please, hold this forum useful!
    And let us come to the point that you are helped and we are glad!

  • Help needed on a TicTacToe java program

    I am very new to java and our teacher has given us a program
    that i am having quite a bit of trouble with. I was wondering if anyone could help me out.
    This is the program which i have bolded.
    {You will write a Java class to play the TicTacToe game. This program will have at least two data members, one for the status of the board and one to keep track of whose turn it is. All data members must be private. You will create a user interface that allows client code to play the game.
    The user interface must include:
    �     Boolean xPlay(int num) which allows x to play in the square labeled by num. This function will return true if that play caused the game to end and false otherwise.
    �     Boolean oPlay(int num) which allows o to play in the square labeled by num. This function will return true if that play caused the game to end and false otherwise.
    �     Boolean isEmpty(int num) will check to see if the square labeled by num is empty.
    �     Void display() which displays the current game status to the screen.
    �     Char whoWon() which will return X, O, or C depending on the outcome of the game.
    �     You must not allow the same player to play twice in a row. Should the client code attempt to, xPlay or oPlay should print an error and do nothing else.
    �     Also calling whoWon when the game is not over should produce an error message and return a character other than X, O, or C.
    �     Client code for the moment is up to you. Assume you have two human players that can enter the number of the square in which they want to play.
    Verifying user input WILL be done by the client code.}

    Hi,
    This forum is exclusively for discussions related to Sun Java Studio Creator. Please post your question at the Java Programming forum. The URL to this forum is:
    http://forum.java.sun.com/forum.jspa?forumID=31
    Cheers
    Giri

  • Help needed to locate missing files

    I'm still a Mac newbie so i'm really having trouble here.
    The capacity of my Mac is 27.94GB and i'm only left with with 749.8MB. The problem is i dunno where the used 27.2GB of stuff are????
    I've checked all the files like Applications, Library, users... each of them have barely over 1GB. So i'm really puzzled where the other GB are???? Where else can they be? I've cleared my Trashbin but that didn't help.
    Can anyone help?? I'm desperate...i'm running out of space!!

    From the Finder (click on the icon with the face in the dock), do a find. File->Find ...
    Use the drop down lists to select Size -> Greater Than -> xxx Mb
    Stick in a number say 100 Mb in the right hand box. Then do the find.
    It should list the large files on your system. This may or may not help. If the files are hidden/private OS ones they won't get listed.
    Another thing to try is an application called Onyx (or something similar).
    It helps clean up files on your system that might not be needed anymore - e.g. cache files, log files etc.. It would be worth running all the options on the 'Automate' tab/screen.
    You can get it from http://www.titanium.free.fr/

  • Help needed with swings for socket Programming

    Im working on a Project for my MScIT on Distributed Computing...which involves socket programming(UDP)....im working on some algorithms like Token Ring, Message Passing interface, Byzantine, Clock Syncronisation...i hav almost finished working on these algorithms...but now i wanna give a good look to my programs..using swings but im very new to swings...so can anyone help me with some examples involving swings with socket programming...any reference...any help would be appreciated...please help im running out of time..
    thanking u in advance
    anDy

    hi im Anand(AnDY),
    i hav lost my AnDY account..plz reply to this topic keeping me in mind :p

  • Help needed for editable alv grid program

    hi,
    Can you please tell me how to set a ‘update’ button in application toolbar of alv griv without suppressing it and how to write the code for that update button so that if I change my editable column data and press the update button my updated data should be stored in my database table.
    the code what i wrote is:
    TABLES: vbak,vbap.
    TYPE-POOLS: slis. "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_final,
    vbeln LIKE vbak-vbeln,
    erdat LIKE vbak-erdat,
    matnr LIKE vbap-matnr,
    posnr LIKE vbap-posnr,
    END OF t_final.
    DATA: i_final TYPE STANDARD TABLE OF t_final INITIAL SIZE 0,
    wa_final TYPE t_final.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    gd_tab_group TYPE slis_t_sp_group_alv,
    gd_layout TYPE slis_layout_alv,
    gd_repid LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
    PERFORM data_retrieval.
    PERFORM build_fieldcatalog.
    PERFORM build_layout.
    PERFORM display_alv_report.
    *& Form BUILD_FIELDCATALOG
    •     Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
    fieldcatalog-fieldname = 'VBELN'.
    fieldcatalog-seltext_m = 'sales order'.
    fieldcatalog-col_pos = 0.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'ERDAT'.
    fieldcatalog-seltext_m = 'date'.
    fieldcatalog-col_pos = 1.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'MATNR'.
    fieldcatalog-seltext_m = 'material no.'.
    fieldcatalog-col_pos = 2.
    fieldcatalog-edit = 'X'.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'POSNR'.
    fieldcatalog-seltext_m = 'line item no.'.
    fieldcatalog-col_pos = 3.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    ENDFORM. " BUILD_FIELDCATALOG
    *& Form BUILD_LAYOUT
    •     Build layout for ALV grid report
    FORM build_layout.
    gd_layout-no_input = 'X'.
    gd_layout-colwidth_optimize = 'X'.
    gd_layout-totals_text = 'Totals'(201).
    •     gd_layout-totals_only = 'X'.
    •     gd_layout-f2code = 'DISP'. "Sets fcode for when double
    •     "click(press f2)
    •     gd_layout-zebra = 'X'.
    •     gd_layout-group_change_edit = 'X'.
    •     gd_layout-header_text = 'helllllo'.
    ENDFORM. " BUILD_LAYOUT
    *& Form DISPLAY_ALV_REPORT
    •     Display report using ALV grid
    FORM display_alv_report.
    gd_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = gd_repid
    •     i_callback_top_of_page = 'TOP-OF-PAGE' "see FORM
    i_callback_user_command = 'USER_COMMAND'
    i_grid_title = outtext
    is_layout = gd_layout
    it_fieldcat = fieldcatalog[]
    •     it_special_groups = gd_tabgroup
    •     IT_EVENTS = GT_XEVENTS
    i_save = 'X'
    •     is_variant = z_template
    TABLES
    t_outtab = i_final
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    IF sy-subrc 0.
    •     MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    •     WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM. " DISPLAY_ALV_REPORT
    *& Form DATA_RETRIEVAL
    •     Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
    SELECT avbeln aerdat bmatnr bposnr FROM vbak AS a
    INNER JOIN vbap AS b ON avbeln = bvbeln
    INTO TABLE i_final WHERE avbeln = bvbeln.
    •     ENDFORM. " DATA_RETRIEVAL
    thanks in advance.

    hi sudhir,
    thanks for ur reply.
    after seeing the code u send to me i made changes to my program.but still when i click on update button,nothing is happening.can u please suggest me an idea.
    TABLES: vbak,vbap.
    TYPE-POOLS: slis.                                 "ALV Declarations
    TYPES: BEGIN OF t_final,
         vbeln LIKE vbak-vbeln,
         erdat LIKE vbak-erdat,
         matnr LIKE vbap-matnr,
         posnr LIKE vbap-posnr,
         END OF t_final.
    DATA: i_final TYPE STANDARD TABLE OF t_final WITH HEADER LINE,
          wa_final TYPE t_final.
    *DATA:i_final LIKE vbap OCCURS 0.
    *DATA:wa_final LIKE vbap.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          gd_tab_group TYPE slis_t_sp_group_alv,
          gd_layout    TYPE slis_layout_alv,
          gd_repid LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
      fieldcatalog-fieldname   = 'VBELN'.
      fieldcatalog-seltext_m   = 'sales order'.
      fieldcatalog-col_pos     = 0.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'ERDAT'.
      fieldcatalog-seltext_m   = 'date'.
      fieldcatalog-col_pos     = 1.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'material no.'.
      fieldcatalog-col_pos     = 2.
      fieldcatalog-edit        = 'X'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'POSNR'.
      fieldcatalog-seltext_m   = 'line item no.'.
      fieldcatalog-col_pos     = 3.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    gd_layout-totals_only        = 'X'.
    gd_layout-f2code            = 'DISP'.  "Sets fcode for when double
                                            "click(press f2)
    gd_layout-zebra             = 'X'.
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text       = 'helllllo'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    FORM display_alv_report.
      gd_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program      = gd_repid
               i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM
                i_callback_user_command = 'USER_COMMAND'
                i_callback_pf_status_set = 'GUI_STAT'
               i_grid_title           = outtext
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
               it_special_groups       = gd_tabgroup
               it_events                = it_events
                i_save                  = 'X'
               is_variant              = z_template
           TABLES
                t_outtab                = i_final
           EXCEPTIONS
                program_error           = 1
                OTHERS                  = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT avbeln aerdat bmatnr bposnr FROM vbak AS a
      INNER JOIN vbap AS b ON avbeln = bvbeln
      INTO TABLE i_final WHERE avbeln = bvbeln.
    ENDFORM.                    " DATA_RETRIEVAL
          FORM GUI_STAT                                                 *
    -->  RT_EXTAB                                                      *
    FORM gui_stat USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'UPDATE' EXCLUDING rt_extab.
    ENDFORM.
          FORM USER_COMMAND                                             *
    -->  U_COMM                                                        *
    -->  RS_SELFIELD                                                   *
    FORM user_command USING u_comm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
      DATA:selfield TYPE slis_selfield.
      CASE u_comm.
        WHEN 'UPDATE'.
          LOOP AT i_final ."into wa_final.
            i_final-matnr = vbap-matnr.
            update (vbap) from table i_final.
            IF sy-subrc = 0.
              MESSAGE s000(0) WITH 'records updated successfully'.
            ENDIF.
          ENDLOOP.
      ENDCASE.
    ENDFORM.

  • Help needed in running a  java program

    hi
    how to run a java program using another java program.
    i have tried a litte to run the notepad,mspaint applications sucessfully using the Runtime class,but how to specify a java program init . the program is given below
    public class cls
    public static void main(String args[])
      Runtime r=Runtime.getRuntime();
      Process p=null;
      try{
        p=r.exec("notepad" );}
        catch(Exception e) {
        System.out.println("error on execution");
    }to run another java program how to modify the exec() or any other way to do this.

    thank u
    its working without any error but it doesn't print any thing on the screen.
    the program is
    this program to be run by cls.java
                                             // hello.java
    import java.io.*;
    public class hello
    public static void main(String[] args)
        System.out.println("hello world");
      }cls.java is given below
                                                    //cls.java
    public class cls
    public static void main(String args[])
      Runtime r=Runtime.getRuntime();
      Process p=null;
      try{
        p=r.exec("java  hello" );}
        catch(Exception e) {
        System.out.println("error on execution");
    }

  • Help needed in 8i Lite Replication Programming

    Hi:
    I am currently doing a prototype of using Oracle Lite 8i replication service. I am using the Oracle Replication OLE Control (shipped with 8i Lite) in a VB program. I just tried to connect to my local 8i Lite database by using the API, here is the code:
    Private Sub Form_Load()
    Dim Obj As Object
    Set Obj = CreateObject("POLite.Repsvr8")
    Dim rcode As Boolean
    rcode = Obj.StoreConnectionOpen("scott", "tiger", "POLITE")
    End Sub
    And here is the error I got:
    In a message box with a caption of "POLite Replication Server", it says "repcb8.dll -- could not be loaded (126) "
    Can anybody from Oracle community tell me what this message all about? And if you guys have any sample replication VB code, I would appreciate if you guys can share with me.

    Hello,
    we had the same problem as you did and we couldn't find the repcb8.dll file on the installation CD.
    You have to make a copy of your \ORACLE_HOME\BIN\olrep840.dll file.
    (or if you are using an older version olrep835.dll/olrep836.dll). Then you have to RENAME the copy of olrep840.dll to repcb8.dll.
    Perhaps it will now ask for another file. Repeat the same process for this file also (rename a copy of the olrep840.dll to this file).

  • HELP NEeded in creating tis java program

    create a prompter appliation that prompts the user for two numbers. The first number is a minimum value, and the second is a maximum value. Prompter then prompts the user for a number between the minimum and maximum numbers entered. The user should be continuously prompted until a number within the range is entered. Be sure to include the minimum and maximum numbers in prompt.
    use boolean operator in while loop
    what do do??

    so can some 1 help me"Help" as in provide workable code? They might - you did all right in your last
    thread. Personally, though, I doubt you're much helped by this.
    Start by reading the description of what your code must do. Make sure you
    understand the description - perhaps by explaining it in your own words to someone
    else. If they don't understand then you don't understand: not in any sense
    that matters.
    Then proceed to write some code. The first sentence of the description you posted
    makes a good starting point. Write some code that compiles and does this.
    Make sure you understand what each line does before moving on.
    If you get stuck post some code and an actual question. If there is a compiler error,
    copy paste and post the actual error you can't understand and say which line it refers
    to. If your code compiles but has unwanted, unexpected or mysterious results,
    say what it does and what you were expecting, or wanting.
    Hope that helps.
    (My apologies if your native language is not English, but really. Use a
    dictionary - online or, better, in paper form. Eschew abbreviations. Read what you
    post aloud or, as above, to someone else who can tell you if it makes no sense.)

  • Help needed to write download file program

    I want to write a servlet which will allow clients to download files from server. Main work is, a fixed no.of downloads(only n users can have download permission) will be allowed at any time. if any more no.of new users came they have to wait for a download connection. if a connection is freed then that connection will be given to a user who had entered first. (First In First Out). Can it possible. Plz help me. Thanks in advance.

    It's easy:
    In PAI you have do an insert into a database table, following the steps:
    1.on PAI  create a module: for exemple Zwrite_table.
    2. inside Zwrite_table code as follow:
    move var1 to wa_table-var1.
    move var2 to wa_table-var2.
    move var3 to wa_table-var3. etc etc
    insert table ztable from wa_table.
    P.s. ztable is a database table.
    wa_table is a structure that have the same structure of ztable.
    var1 var2 var3 etc is a variable inside your dynpro.
    regards,
    Roberto.

Maybe you are looking for

  • Is it possible to force 16/32-bit stack alignment without using the optimizer?

    The compiler emits code targeted at the classic Pentium architecture for the -m32 memory model.  I'm running into problems mixing Sun Studio compiled code with code built with other compilers because the other compiler builds under the assumption tha

  • Web Browser "An error occured in the script on this page'

    Hi, I try to use a Web applic through std SBO Web Browser window. However I get this message:  "An error occured in the script on this page'. Why do I get this message? (I don't get it through other explorers) Is there a way to change browser paramet

  • IDE problems

    There are a couple of problems with the IDE that were acceptable in Beta releases, but should have been fixed for the Release. 1. The compiler (builder) reports each problem 3 times. A minor problem, but one would think easy to fix?? 2. IDE crashes d

  • Unable to decode and import the selected wav/mp3 file

    I am trying to import mp3's into a Captivate 3 presentation but keep getting this error "Unable to decode and import the selected wav/mp3 file." I am using the same mp3 files that I have used many times with projects in Cap1 and Cap2. I have converte

  • [SOLVED] Keybinding to rotate video in mpv

    Many people take videos with mobile phones these days, and many mobile phones have a vertical orientation, which means many videos are sideways. I know I can fix this at the command line with "mpv --vf=rotate=1 filename.mp4" but... Is there a keybind