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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Madhi

  1. Madhi

    shortcut Key

    Hi see123 Insert a Textobject in the report and type h. Then set the font as Wingdings 3. Madhivanan
  2. Madhi

    how to print to the screen from a command line program ?

    Hi, Try to use print command which prints on form Print "This is printed in VB Form" Madhivanan
  3. Madhi

    suppress section detail

    Hi What is the datatype of A.Inactive? Try this. whileprintingrecords; {A.Inactive} <> True and {A.ruleid}=2 and {A.Companyid}=10 Madhivanan
  4. Madhi

    suppress section detail

    Hi ulag, Try the following if {B.Inactive} <> 1 and {B.ruleId}=2 and {B.reportId}=1 and {B.CompanyId)=10 then True Madhivanan
  5. Madhi

    setting a txt box to only accept uppercase.

    Hi Neozero, In the textbox_KeyPress event write the code KeyAscii = Asc(UCase(Chr(KeyAscii))) Madhivanan
  6. Madhi

    Keeping MDI child form maximized

    Try to change the form's border style as fixed single Madhivanan
  7. Madhi

    Re: speed of report

    Hai ecsrs, How are you passing parameter values? can you write the format of date you are passing? Madhivanan
  8. Madhi

    ERROR: There is not enough memory for this operation

    Try this. Goto File-->Printer setup and make sure that "No printer" option is unchecked. Madhivanan
  9. Madhi

    Flex Grid or better Control?

    Hi, Try the following dim j as integer For j = 1 To 6 set msgRequests.ColAlignment(j) = flexAlignLeftBottom Next Madhivanan
  10. Madhi

    Internet Shorthand

    ASAP - As Soon As Possible IWGBY - I will Get Back You Madhivanan
  11. Madhi

    ERROR: There is not enough memory for this operation

    Hai, Your computer may not be conncted to the printer properly. Check that. Madhivanan
  12. Madhi

    making Parameter Fields pop-up

    Hai, if, What you say is to pop up for parameter when you publish the data, then Try to referesh the report before doing this. Then the user will be asked to enter the parameter value. Madhivanan
  13. Madhi

    making Parameter Fields pop-up

    Hai Croaks, Dont pass parameter values when calling that report. If the parameters are not passed, the Crystal Report will automatically pop up to get the parameter values. Madhivanan
  14. Madhi

    Never-ending Q: Formatting numbers in a grid -

    Hai Toman, Try the following If the feild is number, then MsFlex.colAlignment(col)=7 MsFlex.Textmatrix(row,col)=Format(MsFlex.Testmatrix(row,col),"###,##0.00")
  15. Madhi

    msflexigrid - pictures

    Hai, Try the following GridName.Row=a GridName.col=1 GridName.cellPicture=loadpicture(PicturePath)

Part and Inventory Search

Back
Top