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. Mariaszek

    RETRIEVE METHOD

    What is datatype of DataWindow parameter (what is declared datatype)? Is that the same as as_parameter_value variable? If not, try to convert variable value to proper type. For test, try to assign proper value to as_parameter_value variable and retrieve data. Tomek
  2. Mariaszek

    RETRIEVE METHOD

    Do you set any value to as_parameter_value variable? Do you use retrieval argument in SELECT of DataWindow Object? Tomek
  3. Mariaszek

    Datawindow filter changing order of rows

    It works in that way as long as I remember. Try to use sort after filtering your data. Tomek
  4. Mariaszek

    window stops refreshing when focus changes to different application

    Maybe try to a little redesign your app. For example, you can build a kind of progress bar window taking control on your process. I don't know what your app is designed to do and what does it mean "large quantities of data". You can use Yield() function to interrupt processing data. It can...
  5. Mariaszek

    How to change DDDW data upon radio button change

    Try to get dddw into DataWindowChild variable and then filter data in it: 1. First take dddw into DataWindowChild DataWindowChild ldwc_filter dw_1.GetChild("your_dddw_column", ldwc_filter) 2. Next, try to filter that (after changing radiobutton ) ldwc_filter.SetFilter("condition for...
  6. Mariaszek

    Connect to SqlServer without error message

    Of course, You are right. Sorry. Tomek
  7. Mariaszek

    Connect to SqlServer without error message

    1. What is your sqlca params definition script before "connect" command? 2. Look into PB help on "Try...Catch" syntax. Maybe it helps you to catch an error. Tomek
  8. Mariaszek

    Connect to SqlServer without error message

    First of all you should check SQLCode after connect to database. If messagebox still appears try to use SystemError event and try to catch the error there. Tomek
  9. Mariaszek

    Datawindow retrieval limit?

    I've never heard about retrieval limit. But if you are afraid about amount of retrieved data try to use RetrieveAsNeeded option. Tomek
  10. Mariaszek

    Datawindow to Excel

    Try to use SaveAs method: dw_1.SaveAs(file, type, colheading, encoding) type can be Excel5! or Excel8! Look into PB help Tomek
  11. Mariaszek

    Best way to break DW into tabs?

    > Is there a way to use the same sql like an ancestor and Ihenrit it to use with differents datawindows so the share will never fail? IF You want to share SQL between different Datawindows try to use QUERY. Query is "SQL syntax part of DW". Try to prepare your sql select, then save it as query...
  12. Mariaszek

    combining text object and column

    What is the source of text object value? If it's hard coded in DW, you can combine it with database column using computed field, like thekl0wn said. If you get it from database or as a retrieval argument, you can combine it with database column using computed field too, like thekl0wn said...
  13. Mariaszek

    Use Column Name as Variable in Powerscript

    Look for "Execute immediate" function. You can use it in scripts. If you need it in DataWindow, you can prepare proper string in stored procedure and build DataWindow based on that procedure. Mariaszek
  14. Mariaszek

    Retrieving DW with referece to checkbox and SLE

    Everything is clear for me now. First of all I suggest to use radiobutton instead of checkboxes. User can check either name or number. There are a lot of possibilities to do that. In your case you should: 1. Choosing data by number datawindow.DataObject = "d_no" where d_no is name of...
  15. Mariaszek

    Retrieving DW with referece to checkbox and SLE

    Type of arguments defined in DataObject must be the same as type of variables passed to Retrieve() function. Look at the example I send you in previous message. In DataObject there are 4 arguments: 1st is number, 2nd is number, 3rd is number and 4th is string. So values passed to...
  16. Mariaszek

    How change Properties on a file from an application

    There is no native solution in PB, I'm afraid. If I were you I will look for in Microsoft msdn and next try to implement in PB. Try to find any API functions for that. I'll try to find smth in free time. Tomek
  17. Mariaszek

    How change Properties on a file from an application

    What is "title" and "comment" for file? Can you show how do you read these properties? Tomek
  18. Mariaszek

    Retrieving DW with referece to checkbox and SLE

    The problem is that you should put proper values as arguments of Retrieve() method. It works like this: 1. If you don't define retrieval arguments in DataSource of your DW, you simply call dw_1.Retrieve(). 2. If you define retr. arguments you should pass values for retrieve or there dialogbox...
  19. Mariaszek

    Retrieving DW with referece to checkbox and SLE

    I don't know if I understand your question. First of all is a SELECT statement for DataWindow. There is no matter how many tables you want to use. Prepare Select statement and paste it into DW. Could you explain what does it mean: "The 3 checkbox with SLE indicated criteria on how i want to...
  20. Mariaszek

    Need External Function To get the system Password(PowerBuilder 7.0.2)

    I use PB 10.5 but I think that my code should work for you. To get Windows user name you should: 1. declare external function: Function boolean GetUserName( ref string buffer, ref ulong buflen ) Library "advapi32.dll" Alias For "GetUserNameW" 2. Read user name: ULong lul_buflen=255...

Part and Inventory Search

Back
Top