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 SkipVought 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. akenty

    Mouse Over

    The following can be used to accomplish what you need. You can also combine this with the timer event in order to display the window you are using as a flyover. ls_object = this.GetObjectAtPointer() ls_row = Right(ls_object, Len(ls_object) - (Pos(ls_object,'~t'))) ls_column = LEFT(ls_object...
  2. akenty

    Cannot receive Socket I/O more than once

    Hi, having problems receiving an HL7 transmission from a third party through a socket transmission. Listening port connects fine, can receive the first transmission and process fine, but the second one is held up. Here is the code: public void run() { DateFormat dateFormat...
  3. akenty

    Reading inputstream is not finding end of file

    To correct the problem, I used the available() method. It seems that the read() could not detect the end of the file, but the available() was able to see that there were no more bytes to be read. Just speculating that is what is happening, I'm a little green to java. while (nextByte...
  4. akenty

    Reading inputstream is not finding end of file

    Hi All, I've tried a number of different ways to read an inputstream and cannot get the -1 for the end of file to trip. Stepped through the code and got to the final carriage return in the stream, but when the next read() is performed, the code goes into neverland. Does not produce an error and...
  5. akenty

    RowsCopy / DeleteRow problems in PB 10.5

    Hi All, I'm having problems copying rows from a datawindow to a datastore using the RowsCopy function in PB 10.5 (was working fine in PB8). Error is an unhandled win32 exception. Both the DW and the DS use the same dataobject. I do dynamically add columns to both the DW & DS in the application...
  6. akenty

    Problem running application through PB 10.5

    Hi All, wondering if anyone has had problems running the application through PB 10.5. Have no problem starting it the first time, but when I go and make changes to anything in the app and then go to run it again, PB 10.5 shuts down. No error message, just closes PB completely. Open up PB and can...
  7. akenty

    Oracle XE replication setup

    Hi All, Brand new to Oracle. Installed XE and can log into two different schemas where I have defined the same table. Now I would like to set up replication between the two DBs. Is this even possible? Looked high & low for documentation but could not find anytyhing related to XE & replication...
  8. akenty

    source code for progress meter needed

    If you are using the PFC, there is a progressbar in there that you can use.
  9. akenty

    Using SHBrowseForFolderA, how do I specify a specific directory

    Hi All, Using SHBrowseForFolderA as an external function to allow the user to browse to a directory. What I would like to do is start from a specific directory instead of from the default (currently starts off at My Computer). Any help would be appreciated. Thanks in advance.
  10. akenty

    MS Word OLE and Powerbuilder 8

    Hi there. Do not know of a way to use the word spellcheck without having word pop up, but we are using a third party product to incorporate into our PB app. We are using TE Editor from SubSystems Inc where you drop the OLE object onto your window and can do whatever you want to the...
  11. akenty

    DbisqlG not working

    Hi there, Since loading java 1.5.0_03, I cannot get DbisqlG to run. It looks like it is firing up and is present in the list of processes in the task manager, but it does not run. No problems running DbisqlC. Would anybody know how to set up my path so that I can get DbisqlG to run again? Thanks...
  12. akenty

    results to a file.... .xls

    If you can open up the DB in DBISQLC or DBISQLG, all you have to do is: SELECT * FROM table_name; OUTPUT TO 'c:\file_name.txt' FORMAT ASCII; Then open up the text file in Excel and you should be good to go. Hope this helped.
  13. akenty

    Can trunc table statement be used in Store Proc?

    I was able to truncate a table in a stored procedure using the following: EXECUTE IMMEDIATE 'TRUNCATE TABLE tablename ';';
  14. akenty

    Illegal cursor operaton attempt when dynamically creating a temp table

    Found a work around for the problem (developing in Powerbuilder) by excluding the final select from the stored procedure. I set up a dummy DW (in this case, the columns had to be defined as strings) where I modified the select to a SELECT * from the newly created temp table. The table name is...
  15. akenty

    Illegal cursor operaton attempt when dynamically creating a temp table

    Hi All, I am dynamically creating a temp table and it's columns and loading a file into it using a stored procedure. Everything is working swimmingly until I do the final select for my result set where I receive an "Illegal cursor operation attempt". Here is the sql for the stored procedure...
  16. akenty

    Add dynamically a column

    This can be done using the Modify method. First get the correct syntax to add the column(s) to the DW.The best way to do this is to create a DW with the columns you want and then export it. You can find the correct syntax in the .SRD. Next, in the code, add the column syntax to a variable...
  17. akenty

    Using BMP in the Ink control

    Have inserted an ink control into a PowerBuilder app where I am able to capture and save the ink into a Sybase DB. Some users do not have a tablet to capture the ink, so I want to save a BMP into the DB and then display it in the ink control. I can save the BMP to the DB, but whenever I try to...
  18. akenty

    Using the InkPicture Control

    I have a PowerBuilder 8.0 application which requires capturing a client's signature. How do I copy a signature (drawing) to the clipboard when using the Microsoft InkPicture control? I have placed the OLE control on my window and I am able to scratch a signature into the control, but I am not...

Part and Inventory Search

Back
Top