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!

Search results for query: *

  • Users: Negator
  • Order by date
  1. Negator

    MySQL troubles

    Hello to all PB wizards! I work with MySQL Database thru MyODBC. Here is the trouble that always occurs while I design the new Datawindow. After selecting a table in the "SQL Select Mode" such a message pops up: root.pbcattbl does not exists Datawindow creates without problems, but there are...
  2. Negator

    Avoid database connection when DataWindow is open for editing

    Hello! Is it possible to avoid DB connection when i open Datawindow for editing? I tried my best to find this option but have failed :-( Thanks!
  3. Negator

    Menu: I can't see toolbar!

    Xsyguy, thanks! You guessed my mistake :-) Great forum and very helpful coders here!
  4. Negator

    Menu: I can't see toolbar!

    Hello! I know my question is a newbie's question, but I really feel get lost. My menu is visible, but I can't see the tool buttons. The are visible at design form, and all checkboxes that can affect the visibility I checked on. What is my mistake? Thank you!!!
  5. Negator

    Accessing User Object's Parent.

    Hello PB Wizards! I made a user object - tabpage. (inherited from ub_tabpg). The problem is: i need to access the window, on which consists this tabpage. I know that i can create an instance variable Window into my tabpage an set its reference from the window itself... but is it possible to...
  6. Negator

    SQL Error in DataWindow

    You mean that you click on the lower-tab called "Syntax" which shows you a grey read-only statement? This is't a bug. Use menu Design-Convert To Syntax to edit the query manually.
  7. Negator

    Window events

    I need to initialize some objects on my window. Which event can I use? This event must be called once after (or during) creating window. (Like OnCreate in Delphi). Thanks!
  8. Negator

    Making custom visual

    Thank you! Please make me a tip: what do you mean "invokes"? For now i made a function Init with window argument, which must be called from the window manually. It's pretty bad. Is it possible to catch the window reference in the userobject itself? I believe you understood me. Sorry for my...
  9. Negator

    Making custom visual

    Hello PowerBuilder wizards! I made a Custom-Visual userobject (with three buttons: OK,Cancel,Apply). How can I reference the host window from the Cancel button to close it? Thanks!
  10. Negator

    PowerBuilder + MySQL

    Hello friends! Is it possible to work with MySQL server using PowerBuilder?
  11. Negator

    What's wrong with creating datawindow?

    Hello all PowerBuilder wizards! I use such code to create datawindow: datawindow NewDw long Code NewDw = create datawindow NewDw.DataObject = 'main_datawindow' Code = NewDw.SetTransObject(SQLCA) MessageBox('code', string(code)) It returns -1, so SetTransObject fails. However, I tried to...
  12. Negator

    Need an advise in designing DataWindow

    Hello all PowerBuilder wizards! I need an advise on designing dw. I'm just beginner, and these design tools are to huge to understand their abilities quick :-) I have a table with columns ID and Value. Looks like this: 1 10.11 1 11.05 1 09.15 2 16.13 2 15.98 2 16.25 e.t.c. My...
  13. Negator

    Need a hint on stored procedures

    Small mistake: DECLARE emp_proc PROCEDURE FOR TestF; (not "TestFunk")
  14. Negator

    Need a hint on stored procedures

    Hello friends! I'm trying to study stored procedures. So I've got such function: (code entered in Sybase Central, function created successfully) CREATE FUNCTION "DBA"."TestF"( /* parameters,... */ ) RETURNS integer BEGIN DECLARE res integer; SET res = 14; RETURN...
  15. Negator

    Checkboxes on Datawindow

    Hello friends! I feel helpless trying to put a checkbox on DataWindow. Sure this feature must exist, but where is it? :-) Thank you!
  16. Negator

    Stored procedures

    Hello friends! I need to recreate some of the ordinary functions in my application like a Stored Procedures in database Server Anywhere. I thought that stored procedures are the SQL code. Is it possible to use standart powerbuilder code in them? Please give me some link or small example of...
  17. Negator

    Resizing Window

    Hello friends! Please give me an advice: how to limit the size of the window while user resizes it. For example, I have some: integer MinWidth = .. integer MinHeigth = .. Tried to use Resize method in Resize event, but it works strange, and looks like bad solution. Thank you!
  18. Negator

    CONNECT method

    After executing CONNECT USING SQLCA how to check if the connection was established? Thank you!
  19. Negator

    Retrieval arguments

    Hello friends! I made some retrieval arguments in my datawindow, and now PowerBuilder asks me to enter their values each time i change something in the datawindow. But I don't need them at design time! And this request is very annoying. How to turn this feature off? Thank you!!!
  20. Negator

    Computed filed Count

    Is it possible to put this field not in summary, but in the footer!! It flows automatically in summary, and I can't move it to footer. Thank you!

Part and Inventory Search

Back
Top