Hi, I am working in a multi-language environment.Our programs is used with English, French , Greek, ... It works fine by using the Unicode. However, the window...
Hi All, This is bit lengthy mail sorry for that. I'm getting a strange problem with menu's. We have an application which we migrated recently from PB.7 to...
Good morning everyone. I need to import a comma delimited file into a datawindow. I have PowerBuilder 7 and it only allows tab delimited imports. Is there...
Hi all If you don't need to do it in runtime, try to open the txt with MS-Word or any other text editor and replace ',' qith the special character 'tab' But,...
PB 7.0 Build 8046 Following is the declaration in VB Attribute VB_Name = "mLDB" Declare Function LDBUser_GetUsers Lib "MSLDBUSR.DLL" (lpszUserBuffer() As...
Thanks David I do need to do it at runtime. I was hoping there was an easier way, given that PB allows a "save as csv". Strange that PB does not allow to read...
It should be this: FUNCTION Integer LDBUser_GetUsers(String lpszUserBuffer(), String lpszFilename , Long nOptions ) LIBRARY "MSLDBUSR.DLL" ... () As String,...
Hi Gilbert, I created an import routine to accept a csv or txt file. The core of the function is here: DO WHILE li_read_rc <> -100 //read the first record ...
Thanks for the response but the first argument is an array in VB passed by reference and return of the function gives the list of users. Regards, Dewang ... ...
Well, maybe this FUNCTION Integer LDBUser_GetUsers(String lpszUserBuffer(), REF String lpszFilename[] , Long nOptions ) LIBRARY "MSLDBUSR.DLL" can be correct,...
Thanks for response. But it is the first argument that is the array. I have in myapplication declared as : function integer LDBUser_GetUsers(ref string...
Thanks for response. But it is the first argument that is the array. I have in myapplication declared as : function integer LDBUser_GetUsers(ref string...
How was the dll written ? If it is VB : no hope. You cannot write standard dll with VB. Standard dll are written in C, C++ or Delphi. VB dll are ActiveX dlls. ...
What's the correct declaration for a standard dll? ... De: Olivier Citeau [mailto:ociteau@...] Enviado el: lunes, 01 de diciembre de 2003 13:55 Para:...
Thanks for the response. Yes it is a standard dll and has been downloaded from microsoft site. The declaration is given with the dll. This dll can be used in C...
To get the people who have not borrowed anything (which means they are not in one of the tables) you will have to do an outer join and pull back rows from...
Hi people, I wandering how to use Tomcat as app server. - any suggestions? - JSP or servlets? TIA Pablo (using PB9 and also still PB6.5) ps. some code examples...
Digging down into my memory, I can remember these tips: 1) be sure your connection mode really supports async calls, and change the connection parameters as...
Hi, Pb's PB 8.0.4 How can I put the text of tabs in vertical position? I know how to align it at left, but i need also to put it in vertical. Any idea? TIA...
You may not want ALL your retrieves to be asynchronous, only the long-running ones. The only compelling reason to put anything in the the retrieverow event is...
In the doc you posted, there was the following: This BSTR array in C/C++ should initially be allocated with a lower bound equal to 1 (not required however) and...
Thanks for all information, I think I've got the idea how to display the DW, I've already made DW in weekly base (7 x 24 columns) . But can you give a clue how...
use the dayname function dayname(<date>) return value is the string day (sunday,monday,.....) e.g. string ls_day ls_day =dayname(today()) messagebox("Today is...
This is the PowerBuilder Help Forum ... Dear all, Using PB 7.0 build 5031 and Oracle 8i. My requirement is to call java classes from PowerBuilder, Please let...
You need to arrive at an offset from where a particular month starts. Typically, this falls on the first row of cells anywhere from 1-7 (Sunday-Saturday). To...
Thanks Shekar.... "Shekar C. Reddy" <powerobject@...> wrote: You need to arrive at an offset from where a particular month starts. Typically, this falls...
Hi David, Go to the Properties of your tab control.( Open the tab control object. If properties are not visible select View -> Layouts -> Default) There is a...