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

    Crystal reports Export to Excel

    I have a crystal reports which has a group header. When I export the report to excel, I don't want to export the group header/s. I want only the header and details. It works if I suppress the group header, but then it doesn't show on the report on the screen as well. Any help will be...
  2. vadnagra

    VBA Script to Open Lotus Notes email

    Yes I tried several random things - display, show, activate - they don't seem to work!
  3. vadnagra

    VBA Script to Open Lotus Notes email

    I am trying to open a Lotus Notes (V8.0) email from within an excel workbook (VB Script). I want to set the subject line and body of the email via the code, but then have the email open up so that I can manually enter the Receipient list of names. This is how the current implementation works...
  4. vadnagra

    Where to code for a keydown action

    I want to be able to take a particular action when the user presses an "F" key from anywhere within the application. Where should I be coding for this. I tried to create a keydown event in the application object but that won't work. Any ideas?
  5. vadnagra

    Inserting a group in a datawindow

    I have a datawindow which has 2 groups already defined. I want to add another group but I need this to be the 1st group on the dw. How can I do this (if at all possible), without deleting and recreating the 2 existing groups?
  6. vadnagra

    Multiselect from the dropdown listbox

    I'm seeing a lot of documentation on "Set the ExtendedSelect or Multiselect property to true" for a drop down listbox, but I can't see that property in the control. I tried setting it through code as well "This.ExtendedSelect = TRUE" - even this does not work. Has anyone ever used it? Do you...
  7. vadnagra

    Multi Line Edit Control - wrapping text

    Actually I figured it out just after I posted this :) My mle had a horizontal scroll bar, which is why it was displaying it in a single line. When I removed the H. Scrollbar - the text automatically wrapped over !!!
  8. vadnagra

    Multi Line Edit Control - wrapping text

    I have a text type database field. I am reading it into an event in Powerbuilder, into a BLOB datatype and displaying it in the MLE as String(blob variable). The issue I have is that the entire data shows in one line - how do I get to wrap the text based on the width of the mle ?
  9. vadnagra

    SQLPreview

    First hardcode the sql with the variable values in the datastore and run and see if it works. It could be a problem with the arguements being passed to it.
  10. vadnagra

    Sqlsyntax for a nested window

    How do you find the sqlsyntax for a nested datawindow ? The sqlpreview event shows only the sqlsyntax for the main datawindow ?
  11. vadnagra

    GetFileOpenName with ImportFile

    How do you find the sqlsyntax of a nested datawindow in debug mode ? The sqlsyntax in the sqlpreview event shows only the sql for the main datawindow ?
  12. vadnagra

    debugging a server application

    It just initializes a variable
  13. vadnagra

    debugging a server application

    I have a client and a server component in PB. I put a breakpoint in the server application - some of the breakpoints on the server side show up when I run the application, but one particular break point does not show up. The application seems to be hanging, but when I continue it seems to be...
  14. vadnagra

    Computed field in the header shows only on 1st page

    I have a computed field in my header whose value gets set in the retrieveend even with the dot notation. However when the report goes into the second page, those values don't show. The values show only on the 1st page header. The dot notation used is...
  15. vadnagra

    Which even triggered when a datawindow is closed

    I found the answer to this...in case you want to know. Add the pbm_syscommand event to the datawindow and check for commandtype message = 61536 (datawindow close). There are other commandtype values you can check for various other things.
  16. vadnagra

    New to Powerbuilder and Overwhelmed

    There are a lot of basic PB tutorials online. Search in Google for 'Powerbuilder tutorial' or something like that. The Sybase site itself has a good help tutorial - here is the link http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.pb_10.5/title.htm And don't worry about pb...
  17. vadnagra

    Which even triggered when a datawindow is closed

    I have a datawindow and I am toggling between visible and invisible depending on some logic. I have now added the control menu to the datawindow, so that the user can click at the right top corner to close the datawindow itself. How can I sense when the user is closing the datawindow...
  18. vadnagra

    Powerbuilder Interview Questions

    http://www.estek.net/estek/estBlank.cfm?pageName=PBTechExam These are typical questions above. If you have a strong knowledge of the datawindow and how it works, you shouldn't have a problem. Give a search on Google for "powerbuilder interview questions". As you say many companies are...
  19. vadnagra

    Opening a non-existent object

    Look up the Handle function. If you try to get the handle of a nonexistent object it will probably return a 0.
  20. vadnagra

    Message Box Text Color

    Is it possible to change the color of the text within the messagebox ? I want to show one of the lines in the Messagebox in red/bold.

Part and Inventory Search

Back
Top