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 John Tel 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: kidmar
  • Content: Threads
  • Order by date
  1. kidmar

    Get mac address

    How can I get the mac address of the local machine? I found it can be done using some iphlpapi.dll calls but can't figure out how. Can someone please give me the code to do that? Thank you!
  2. kidmar

    sqlca.get_save_identity() and sqlca.select_identity() help

    Hi. I'm using PB9 with asa db ver 7.0 I need to use these 2 function of the transaction object, but can't find em in the help file. does the select_identity() retrieve the last identity inserted by the transaction object or the global asa db variable @@identity? how does the get_save_identity()...
  3. kidmar

    datastore create() function help

    Hi. I would like to create a datastore from an SQL SELECT. This is the code i wrote: /*******************************************/ // here is my SELECT ls_select = "select * from dba.b04_doc" // create datastore syntax ls_syntax = sqlca.syntaxfromsql( as_select, 'style(type=grid)'...
  4. kidmar

    How to empty an array

    Hi. I need to empty a variable-size array, just as if it has just been declared. for example: 1) integer li[] 2) li[] = {1,5,9} 3) .... After this I want li[] array as it was after point 1, with upperbound(li[]) = 0. Is it possible? Thank you! Powerbuilder 9.0.1 build 7119
  5. kidmar

    Opening a non-existent object

    Hi, In my program i can open a window typing its name in a box. My problem is that if I write the name of a non-existent window the program crushes with the following error: " Application terminated. Unknown object type...." - Is there a way to know if the object exists in the pbl list? - Is...
  6. kidmar

    datawindows computed column

    hi. I have a datawindow with a computed column.the value of the computed column is the result of a global function (written by me.located in a pbl). I tried to put a brakepoint in the global function. debugging, if the computed field is shown, the program calls the function withot stopping (100%...
  7. kidmar

    hide xml elements

    hello is it possible to hide an xml element (if it is null, as an example) in the export/import template? can I hide an element's attribute too? my xml schema doesn't validate an xml file with an empty string element but does validate if the element doest appear at all. thank you
  8. kidmar

    XML Schema structure problem

    Hello I have starded my first job a month ago and i had to study powerbuilder 9.0 on my own(i used fastrack to powerbuilder 6.5 manual). I need to export rows in a DataWindows and generate the xml and xsd files. My problem is that the xsd file has to show restrictions on elements, like this...

Part and Inventory Search

Back
Top