A company I was working for 10 years ago used mostly DDE with PowerBuilder and it was a great solution. A PowerBuilder DDE (dynamic data exchange) client...
Hello, Since I'm new here let me introduce myself: My name is Itai, I'm a programmer for more then 13 years, mostly in the C++ area but I tried almost...
PowerGraphs are just a set of .pbls. And its realy cheap - like $40.00 . It will save you weeks of development. If You don't have resources then you definetly...
Balu, The last I heard hackers writing programs to decompile compiled applications was upto Visual Basic 3 that was supposed to be decompiled manually (not...
hi everyone, I don't like connect to ODBC for sybase..., Can it ? any ideal ? thank you. best regards, alim Yahoo! Biztools - Promote your business from just...
let me repharase your question. you dont want to connect to sybase using ODBC?, any idea? if you dont want to use ODBC, you can try to use the native driver of...
how to connect with use Native driver of Sybase ? thank you. alim Rick Abainza <ricardo.abainza@...> wrote: let me repharase your question. you dont...
Is it possible in PB to return a keycode value when I press a function key (F1 - F12) For example: if I press char "A" then in window event key will return 65....
Hi Cris, We already have an application which runs for Arabic language perfectly. The problem which u r facing is very simple/common in multi- language. You...
Dear all, Our company has planned to go for internet technolgies. Could any one suggest the best books for the internet programming using PB (at present we are...
The most important key in PB is : F1. Had you pressed this key (F1), you would have noticed that key event takes two arguments. You would have written...
Hi to all We are planning to migrate from windows to linux or unix. Does PB run on a linux or unix platform? Or does my application made in PB window based OS...
You can migrate your DBMS to UNIX or Linux with no problem. But PB as a client-server tool works only on Windows OS. PB 6.5 used to work on UNIX platforms, but...
Thanks olivier for the prompt reply ... Is it possible that I run a PB application on window based OS and connect this to Linux or a unix DB.. If possible what...
Thanks Rick, I think that is all I need to know for now... ... From: Rick Abainza [mailto:ricardo.abainza@...] Sent: Wednesday, July 02, 2003 2:48 PM...
Olivier/Anybody, What is the benefit of connecting through the native driver vs. ODBC ? We use MS SQL 2000 and PB 8 but connect through ODBC - To date, I never...
i suggest you use the OLE DB instead of ODBC if you are using PB 8 and MS 2000, OLE DB has a lot of advantage especially in performance and to get advantage of...
Rick I only have the luxury of the following installed database interfaces: - MSS Microsoft SQL Server - ODB ODBC Is the OLE DB driver a standard one that...
it comes with PB 8 enterprise. Cheers, =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Rick Abainza Information Analyst 17 Changi South St.2 Singapore (+65)...
Yes, you can. I connect to Sybase ASE 12.0 runing on Solaris OS. As of which DBMS is "the best" this is a huge question. I have no answer, beacause there is no...
Hello Everybody, Which PowerBuilder version do we need to install to get the Oracle 9.0.1 Database interface in the Database Profile screen. The current...
In my example I used Keydown(65), because the ASCII code for A is 65, Next I needed the Keydown(28) to return the value TRUE but it not works. FYI. The...
Include an "order" computed column in your SQL (in Oracle that would be SELECT ROWNUM,...) To reset your sort order just sort by the order column. ... From:...
can we do like this: 1. when selecting initially have some thing like order by column1, coloumn2 2. ls_select = initialize this with sort on "column1 A,...
couldn't we store the sort string in a variable this ? ls_backup_sort = dw1.object.datawindow.table.sort And then later use this variable to sort again...