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 Mike Lewis 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. BorlandDave

    Problem setting up CBuilder for a new user

    I already checked the environment variables and there were no differences between the users. I also checked in the user's documents and settings and couldn't find anything Borland related. I was just about to give up and reinstall when I suddenly remembered the registry... I ended up copying...
  2. BorlandDave

    Problem setting up CBuilder for a new user

    Ok, I manually added all the packages for the new user and I'm no longer getting any errors of missing components. The project group seems to compile and run correctly. I have a new error when I try to save though... Access violation at address 520FC5DE in module 'CorIde50.bpl'. Read of...
  3. BorlandDave

    Problem setting up CBuilder for a new user

    I've narrowed it down a bit... If in CBuilder, I go to "Component->Install Packages", with the working user I have a huge list of packages displayed. For the non-working user, the list is empty... Why is this user specific? Can I somehow import the settings from one user to the other?
  4. BorlandDave

    Problem setting up CBuilder for a new user

    I have Borland CBuilder 5 working for a particular user on my computer. However, when I log in as someone else and try and open a (previously working!) project group, I get errors every time I try to open a dialog class file complaining of missing components... Class TPageControl not found...
  5. BorlandDave

    Setting attributes for multiple form items

    Is there a way to assign an attribute to all items on a form in one go? For instance, I need to set the Font->Charset attribute for every item on numerous forms. I was hoping there'd be a quick way around this rather than assigned each item individually.
  6. BorlandDave

    Displaying Foreign characters...

    I've just revisited this and I've managed to fix it by changing the "Font->Charset" attribute of my controls from DEFAULT_CHARSET to TURKISH_CHARSET. So, without setting the Charset attribute of each item on my forms individually (there are about 2000), is there a way of setting them all at...
  7. BorlandDave

    Russian (Cyrillic) support.

    It could be that you need to switch the Font->Charset variable to RUSSIAN_CHARSET. Unfortunately this needs to be done for every component on your form. I am having a similar problem trying to implement Turkish into my application. If you make any headway please post your results here. I'd be...
  8. BorlandDave

    SAFEARRAY problem

    When I try that I get the error: "Size of the type 'void' is unknown or zero
  9. BorlandDave

    SAFEARRAY problem

    I've got two blocks of data (data and data2). I'm trying to copy both blocks of data back-to-back into a SAFEARRAY. The first block copies ok, but what should the parametres be in the second memcpy function? SAFEARRAYBOUND bound={dsize+dsize2,0}; psa = SafeArrayCreate(VT_UI1, 1, &bound); if...
  10. BorlandDave

    Displaying Foreign characters...

    Notice the 'U', 'O' and 'C' are displayed correctly despite the accents. The other 3 characters are just completely wrong!
  11. BorlandDave

    Displaying Foreign characters...

    My above post details results when using Windows 2000. I repeated the tests in Windows XP and there are a few differences. The Turkish characters still type correctly into notepad and incorrectly into the EditBox the same as Win2k. But, if I copy and paste the text between the two, the results...
  12. BorlandDave

    Displaying Foreign characters...

    ...in this case Turkish! I have installed the Turkish character set on my UK computer and am able to type the full Turkish alphabet into notepad. However, when I try to type the same thing into an EditBox in my Borland C++ Builder program the characters don't come out the same. I can copy and...
  13. BorlandDave

    IBTable is slow in Interbase 2007

    The database is stored locally with the application, so there shouldn't be any significant speed issues due to loading times. Also the tables are relatively small (sub 100 records). I just can't figure out why there would would be such a difference between IB6 and IB2007. Cheers for the help...
  14. BorlandDave

    IBTable is slow in Interbase 2007

    Only when I activate it. The code is the same as when I was using Interbase 6 yet I find Interbase 2007 much slower.
  15. BorlandDave

    IBTable is slow in Interbase 2007

    I recently upgraded from Interbase 6 to Interbase 2007 and my program is much slower than it used to be when using the IBTable object. Specifically when I call IBTable->Active=true; Does anyone know why this is?
  16. BorlandDave

    Comparing pointers won't work!

    The thing is when I was single stepping through the code I could see the two values showing up in my watch list as being the same, but it kept returning the comarison as false! I hate computers sometimes!
  17. BorlandDave

    Comparing pointers won't work!

    Right, I've no idea what's going on, but I re-typed what I had in my original post virtually word for word and it's decided to work now. 3 hours of programming and I'm none the wiser.
  18. BorlandDave

    Comparing pointers won't work!

    Thanks for the suggestion, but that didn't work either. I've simplified the code and it still doesn't work. Is this even possible? int integer = 1; int *integerPtr1 = &integer; int *integerPtr2 = &integer; if(integerPtr1 == integerPtr2){ //never gets here either! } And it can't get much...
  19. BorlandDave

    Comparing pointers won't work!

    I am comparing two pointers. When debugging they both contain the same address (both 00E2A7DC), but my comparison doesn't return true. Why not? Graphics::TBitmap* Image1; Image1 = new Graphics::TBitmap; //point 'image1' to first image in 'ImageList1' ImageList1->GetBitmap(0, Image1); //add...
  20. BorlandDave

    Copying a record from one DB to another DB

    Thanks for the help, but I've decided to copy the data field-by-field to ensure data integrity. It's the long way round, but the right way I think :-)

Part and Inventory Search

Back
Top