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

    Getting external BITMAP images with Powerbuilder

    Ok, nevermind my last post. I can get it to work by using the following code. Bitmap((Value_1) + ".bmp") Value_1 is the name of the column listing my product numbers. In order for this to work for all products I would have to put all 300+ images in the root folder of the application on all...
  2. RPatrick10

    Getting external BITMAP images with Powerbuilder

    Do I just set that up as another text file like with the PROFILEINT()? Just by typing 0101=0101.bmp...for all products? I like the first code you listed, but I am not sure of what goes where "string" and "Long" are. Do I do BITMAP(PROFILEINT? Which part of that do I actually list the path...
  3. RPatrick10

    Getting external BITMAP images with Powerbuilder

    OK, you guys probably hate me by now. But what I am looking for...Say if I want to see the top 10 selling products of last month. WHen the report runs, i want it to automatically display the picture of all 10 products also. So it would be 10 pictures total, 1 in each row of the report. I can...
  4. RPatrick10

    Getting external BITMAP images with Powerbuilder

    Actually I do have another question. Will this work if I wanted to display different bitmaps for each product. LIke I said before we have well over 300 prodcuts & i wanted to display the image for each product, so I would have different images in each row. Thanks.
  5. RPatrick10

    Getting external BITMAP images with Powerbuilder

    OK, that explains it more, I will try it out. Thanks
  6. RPatrick10

    Getting external BITMAP images with Powerbuilder

    Ok, I am still a little confused. I will add a column named "bmpfilename". Is this a calculated or computed column? What does this column consist of? Is it a list of the bitmaps path? What enables the user to choose the image? Thanks for all you help guys. I am still a little new at this.
  7. RPatrick10

    Getting external BITMAP images with Powerbuilder

    I currently have the Bitmaps stored in an external folder. I was using the full paths to find the bitmaps. The only way I can think of to get a different image for each row is to use the IF statements. I am looking for a way to specify what image goes with what row. I was hoping there was a...
  8. RPatrick10

    Getting external BITMAP images with Powerbuilder

    I am looking to display images of our products within our database reports. I found the BITMAP() powerbuilder function. The problem is that I have 300+ images I would like to use. I can do it by using IF statements (such as...BITMAP(IF(product="001", "1.bmp", IF(product="002", "2.bmp", 0)...

Part and Inventory Search

Back
Top