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

    PowerBuilder 15 Observations and Questions

    Thanks for the info Matt! LR
  2. LunaRoja

    PowerBuilder 15 Observations and Questions

    Hello, I have just started testing out the PB 15 beta. The migration was fairly painless, but I have run into a few oddities. I have looked around trying to find forums where people are talking about their PB 15 experiences and I have found none. I also do not see any feedback areas on the...
  3. LunaRoja

    Treeview Datawindow Oddity (FYI)

    A bit more genericized: // only check if grouplevel > 1 If grouplevel > 1 Then If Not isExpanded (row, grouplevel - 1) Then // return code other than 0 cancels selection operation... Return -1 End If End If
  4. LunaRoja

    Treeview Datawindow Oddity (FYI)

    Hello, I thought I would give a shot at contributing something here. I found a strange behavior in the treeview datawindow I would like to share. I have a treeview datawindow with four levels. If three levels are exposed, but third level is not expanded to show the items in the fourth level...
  5. LunaRoja

    Reading Emails Programmatically in PowerBuilder

    Thanks much for the great sample code Matt. I appreciate the help, LR
  6. LunaRoja

    Reading Emails Programmatically in PowerBuilder

    Hello, I would like to know if it is possible to read email (generally MS Outlook) in PowerBuilder. Is it possible to extract the FROM, SUBJECT and BODY information programmatically? I understand how to compose and send mails, but I am trying to find out if I can open a certain mailbox and...
  7. LunaRoja

    PB 11.5 cannot create new functions or events

    Hello, Whenever I try to add or duplicate an event or function in a window or datawindow control, the Access, Return Type and Event Name controls are ghosted and the right click options (such as Add A New Parameter) are also ghosted. I think I have seen this behavior in the past, but I am not...
  8. LunaRoja

    Saveas HTMLTable and formatting - PB 11.5

    Thanks a lot Matt. I am definitely going to check it out. The price is great for the results it says it will deliver. LR
  9. LunaRoja

    Saveas HTMLTable and formatting - PB 11.5

    Hello, I am saving a datawindow as a .xls file with the type of HTMLTable! because it exports a true representation of the data in the datawindow (columns, order...). But when I open the file all of the columns are very narrow. Do you know how to control the characterisics of the generated...
  10. LunaRoja

    PB 11.5, EAserver 6.2, Oracle 10g --- ORA-24388 occurs after multiple retrieves

    Hello, Our EAServer version is actually 6.3 and there is a chance that this is related to the Sybase Change Request 6956167, which indicates there is a problem with virtual memory usage concerning blobs in EAServer. LR
  11. LunaRoja

    PB 11.5, EAserver 6.2, Oracle 10g --- ORA-24388 occurs after multiple retrieves

    Hello, We have a window that establishes a connection to EAServer, and gets a reference to an NVO (#1) on that server. The NVO (#1) creates a datastore NVO (#2). A button on the window calls a method on NVO #1, which uses NVO #2 to retrieve data. (We're trying to use setFullState /...
  12. LunaRoja

    PB 11.5 Excel OLE Extension

    Thanks Matt! I will check them out. LR
  13. LunaRoja

    PB 11.5 Excel OLE Extension

    Hello, The solution to force the output to Excel 97 was simply to add the enumerated Excel8! variable to the ole saveas method... lole_workbook.saveas(ls_excelpath, excel8!) LR
  14. LunaRoja

    PB 11.5 Excel OLE Extension

    Hello, I am creating an Excel application in PB, dropping some data in it and eventually saving. I am not doing a SaveAs because I need to muck with the font settings of certain cells. The application starts up (lole_excel.ConnectToNewObject("excel.application")) using the currently installed...
  15. LunaRoja

    INI File

    Try this link out: http://www.sybase.com/detail?id=47750 LR
  16. LunaRoja

    PB 11.5 DW Modify of displayonly property of edit control

    Hello, First, thanks to anyone who looked in on this question. Second, I know what the problem is. I should have been modifying the "Protect" property, not the Displayonly property for the datawindow column. Thanks again, LR
  17. LunaRoja

    PB 11.5 DW Modify of displayonly property of edit control

    Ok, that (above) was not a very clear answer to your question. What is not working is that the column I am trying to modify does not change from display only to editable regardless of the value of the "disableinput" column I am evaluating in the IF statement. The return string from the modify...
  18. LunaRoja

    PB 11.5 DW Modify of displayonly property of edit control

    My appolgies for not being clear. If 'disableinput' = "Y", I want to make the "ls_colname (column)" displayonly, if the value is not "Y", I want to make the "ls_colname" editable. I thought I had expressed that, but I guess I was a bit unclear. What I really, and simply, want to know is how...
  19. LunaRoja

    PB 11.5 DW Modify of displayonly property of edit control

    Hello, I am trying to set the displayonly attribute of a datawindow column dynamically. I have tried many combinations and I think I am just missing something in the approach. Below, I have a couple lines of code as an example. To clarify some of the contents: - ls_colname is the name of...
  20. LunaRoja

    PB 11.5 DW Computed column does not update value right away

    Thank you very much! The SetRedraw worked great. LR

Part and Inventory Search

Back
Top