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 strongm 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: konad
  • Order by date
  1. konad

    Calling Large Stored Procedure Problem!!!

    I have a very large Stored Procedure in MSSQL2000 that im calling and giving it 4 parameters, and returning Many Parameters, that are populated by calculations within the same stored procedure, the problem is if i run the sproc for the first time that day using {CALL SPROC_GETVALUE('1/1/2003'...
  2. konad

    I can't insert an image in crystal reports from an access database

    there are several tutorials you can download from the seagate site that show you exactly how to do this in vb and a few other languages
  3. konad

    Report from VB works first time only

    do all machines have the same crystal reports update patches?
  4. konad

    Printing Problem - Crystal Report in Visual Basic

    it is not very clear what you are trying to do with the report viewer or your report or recordsets are you setting an existing report = to your recordset results and trying to open it into a Viewer or ?
  5. konad

    How to set Y axis value dynamically

    yes it can be set at runtime thats why i posted some of the code for it there, and crystal doesn't exactly tell you that you can but i trialed and errored through it till i was able to do just about anything at runtime
  6. konad

    How to set Y axis value dynamically

    also bear in mind i was looking for that blobfield and when i found it i set the current section = to the withevent section, but if i had multiple formatting in diffrent sections i set the withevents section = nothing before i set the current section = to it
  7. konad

    How to set Y axis value dynamically

    you can do it in the Section Format Event of the Report, here is a VB Code example where im resizing a BlobField Image to keep the same ratio of its original width and height to keep it from being stretched out of proportion. Option Explicit ' ***** Modular Declarations Private WithEvents...
  8. konad

    Subreport does not work at customer site

    the subreport has to be changed at the customers site to point to the correct Location, changing the main reports is only for the main, go to the sub and edit and then link it properly
  9. konad

    <b>How to use Smart Viewer control in VB</b>

    there are several Crystal Tutorials in your help files in Crystal that show you this, in fact you can go to crystals site and download a few programs that do exactly that
  10. konad

    Image Size in Crystal is Wrong

    ok, a large problem was with Jasc Paint Shop pro v7 reporting the image size wrong, not sure whats up with that
  11. konad

    Image Size in Crystal is Wrong

    yes the picture is displayed fine, but to resize it means that any picture that comes up in this report with new search parameters is going to be sized wrong as well which will ultimitly cause problems depending how large the picture is because of the scaling factor crystal implements, crystal...
  12. konad

    Image Size in Crystal is Wrong

    i have a report linked to SQL Database, i have a Blob Field inserted onto the report for a bitmap field in my database, on the initial record i know the photo's dimensions are W 313 pixels by H 235 pixels, which is W 4.347 inches by H 3.264 inches, which i have verified by the original image...
  13. konad

    Supressing Subreport

    also check your subreort linking, make sure you are not linking
  14. konad

    Linking Tables in Crystal Reports 8.5

    you don't need to add the table 2 times, simply link your origin and destination both to customerid then modify your Crystal SQL statement to say OR instead of AND, and if you need to modify your join from inner to say LEFT OUTER depending how you want your records returned if there is a match...
  15. konad

    Retarded String Field in Table

    parse it out by doing a string search like Right({table.tablename}, 15) Returns the last 15 characters of the field as a String. then you could do an isdate() function on that returned string to make sure you got it
  16. konad

    What does left outer join mean???

    your first table "left" will return back everything regardless of what is in the outer tables met the criteria or not
  17. konad

    suppress subreport!?

    also you can go to the format section the subreport is in, must be its own section and in the Linking you add that table to your main report, and put a formula in the supress that says LinkedSubTableField <> MainTableField make sure to go into the main sections Show SQL Querry and modify the...
  18. konad

    HOW CAN YOU RE-SIZE AT RUNTIME?

    the reason im doing this is because crystal does not proportion each photo correctly if the box is set to false on can grow and i may have several or hundreds of diffrent picture sizes and thats going to look pretty strange if i had a big picture of a midget but when you view it in crystal he...
  19. konad

    HOW CAN YOU RE-SIZE AT RUNTIME?

    I have a report that contains a BLOB wich holds an Image &quot;Bitmap&quot; from MSSQL database using Crystal v8. I want to keep the BLOB field from growing so as not to get all crazy and such if the actual picture size is larger than the dimensions i set. well if thats the case i have a formula...
  20. konad

    Adding text boxes during runtime in VB app

    put call in front of it, thats a function, and you must call it or else it thinks your assigning it to something thus giving the error expects '='

Part and Inventory Search

Back
Top