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: Shawnasie
  • Content: Threads
  • Order by date
  1. Shawnasie

    Using ShellExecute() to Open a File in Excel

    I am using Borland Builder C++ 2009. I want to open a particular file from Microsoft Excel during runtime. The following line of code opens Excel, but there's a message saying it cant find the file "Tool.xls" -- I have tried giving it the entire path for the file, and it still can't find it...
  2. Shawnasie

    AnsiString conversion to double giving error

    I am using CodeGear C++ Builder 2009. I am getting an error, and I don't understand why. Here's my code: if (angle < 0) { angle = 360 - angle; } AnsiString zero; AnsiString str = AnsiString(angle); int dot = AnsiPos(".",str); AnsiString rounder = str.SubString(dot + 2, 1)...
  3. Shawnasie

    Dll not working -- Please look at my code!

    I am using a dll which allows me to create files containing both images and data about the images. I don't get an error when I run my program. However, when I go to view the files in a special viewer, it won't show a particular section. So, something is wrong with the way that I am entering the...
  4. Shawnasie

    How to edit exif headers for a jpg?

    I am not sure if this is the best place to ask this. I am using Borland Builder 2007. I want to edit the exif (header file) for jpgs from a digital camera. It would be nice to access the information (such as the camera type) and then delete it so that it is just a normal jpg. Just wondering if...
  5. Shawnasie

    Dll- library raising exception class EAccessViolation

    I am using CodeGear RAD Studio Borland Builder C++. I have a dll file that I have linked implicitly. I want to be able to use the classes and functions inside this library, but everytime I try, I get a first chance exception at run time stating, "Exception class EAccessViolation with message...
  6. Shawnasie

    Searching for text files in a directory-- keeps finding jps too!

    I am using Borland Builder C++. I have a dialog box which allows the user to select a file. Then I find the directory for that file, and use that as a path to search for all text files in that folder. My trouble is that if there are any jpeg files in that folder, this method seems to find those...

Part and Inventory Search

Back
Top