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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by thimmava

  1. thimmava

    Cannot connect to oracle 11g from PowerBuilder 11.5

    Hello everyone! Please help me. I have installed oracle 11g database along with 11g 64 bit client on my windows 7 64 bit machine. I can connect to oracle database using Oracle Sql Develoer and SqlPlus. when I try to create oracle database profile using ORA Oracle in PowerBuilder I get this error...
  2. thimmava

    select row with keyshift! and keyDownArrow!

    use seletrow(getrow(), True)
  3. thimmava

    Adding website address in internet explore

    String ls_URL ls_URL = 'www.hotmail.com' Run("C:\Program Files\Internet Explorer\iexplore.exe "+ls_URL) Good luck
  4. thimmava

    select row with keyshift! and keyDownArrow!

    Try using powerbuilder datawindow EVENT IDs Sample code for down arrow key to select a single row ----------------------------------------------------- create a user event ue_key_down() and Assign event id pbm_dwnkey to it.(You will find this event id in the dropdown list) this.selectrow(0...
  5. thimmava

    Get the server Date and Time

    This works for sqlsever write a gobal function and add this code string Mysql datetime ldt_server_datetime DECLARE my_cursor DYNAMIC CURSOR FOR SQLSA ; PREPARE SQLSA FROM "SELECT GetDate() " ; OPEN DYNAMIC my_cursor ; FETCH my_cursor INTO :ldt_server_datetime ; CLOSE my_cursor ...

Part and Inventory Search

Back
Top