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 dencom 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. chedderslam

    setting value in data window

    In my main window I have a data window. I am trying to set a value in it: datawindow dw_1 long ll_newrow ll_newrow = dw_1.InsertRow(0) dw_1.setitem(ll_newrow, "old_premuim", 100) The control is "dw_1", dataobject d_results.
  2. chedderslam

    referencing and setting value for datawindow control

    I have added a datawindow control to my form. I am trying to set its value to that of a string. I have tried this: dw_1.dataobject = w_test and this: dw_1.text = w_test.tabpage_result.mle_3.text w_test is the parent window. Basically I want to set a string value to the datawindow control to...
  3. chedderslam

    save string to text file

    I am trying to save the contents of a control to a text(.xml) file. I have tried the following: string s_file_name, s_quote_response s_file_name = 'C:\quote1.xml' s_quote_response = tab_data.tabpage_result.mle_1.text s_quote_response.saveas(s_file_name,"","") I have also tried this: string...
  4. chedderslam

    sql error when opening workspace

    I have just inherited a powerbuilder application. I am new to powerbuilder, so I'm not sure where to start. Right now, when opening the workspace, I get this SQl error: ------------------------------------------------ Select Error: SQLSTATE = 42502 Microsoft OLE DB Provider for SQL Server...
  5. chedderslam

    The content is not a valid XML

    I am getting this errror: The content is not a valid XML:An invalid XML character (Unicode: 0x0) was found in the element content of the document. I originally thought it was the &, so I used the escape character, but I am still getting this error. Can anyone tell me where the invalid...
  6. chedderslam

    style sheets not being applied in firefox

    I have just developed a site from a template that uses a couple of style sheets. The site renders fine in chrome and ie, but not firefox. I am using stylesheets with a .cfm extension, something I am trying the first time, because they use image references and I wanted to make them dynamic...
  7. chedderslam

    formatting a select works in chrome and ff, not ie

    Please see screen shots here: http://www.smithwebdesign.net/select/ The formatting appears properly in chrome and ff, but not ie. I'm not really strong with styles, so any help would be appreciated. Thanks!
  8. chedderslam

    moving from source code to deployed web app

    I have inherited a powerbuilder 10.5 web application. I am new to powerbuilder so I am learning as I go. I have created a new workspace and added the target. After doing so I have the root directory with several jsp's as well as the WEB-INF and META-INF directories. How do I go from the...
  9. chedderslam

    new to pb, which would be the best way to do this?

    I am brand new to powerbuilder. One of my first tasks at my new job is to update some text in an object that is part of an object that generates pdfs. Currently, it is a plain text control(? is that the proper term?). They need it to display text based upon conditions, either one string of...
  10. chedderslam

    duplicating a ::msado::query object

    I need to loop through a query twice. The only way I can figure on doing so(without running the query twice) is to duplicate the object before calling the next method. I'm not sure how to do this. I also tried to look up the msado docs online but couldn't find them. Can anyone tell me how to...

Part and Inventory Search

Back
Top