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

    C++ Builder 2009 vs. Delphi 2009: UnicodeString

    Hi! Me again :-) Consider this piece of code: s: UnicodeString; s := '?? ?? ?? ?? ?? ?? ?? ????????????????????'; Memo1.Lines.Add(s); and the same lines in C++ Builder: UnicodeString s; s = "?? ?? ?? ?? ?? ?? ?? ????????????????????"; Memo1->Lines->Add(s)...
  2. BoMi

    Delphi 2009 vs. C++ Builder 2009: UnicodeString

    Hi! Me again :-) Consider this piece of code: s: UnicodeString; s := '?? ?? ?? ?? ?? ?? ?? ????????????????????'; Memo1.Lines.Add(s); and the same lines in C++ Builder: UnicodeString s; s = "?? ?? ?? ?? ?? ?? ?? ????????????????????"; Memo1->Lines->Add(s)...
  3. BoMi

    Speed optimisation in CodeGear RAD 2009

    Hi! I also posted this question on the C++ Builder forum, but I would like to hear your opinion too. This forum has much larger user base, and it's the same IDE after all. Here's the thing: I've been using C++ Builder 2009 for the last couple of days trying to port one of my C++ Builder 2006...
  4. BoMi

    Speed optimisation in C++ Builder 2009

    Hi! I've been using C++ Builder 2009 for the last couple of days trying to port one of my C++ Builder 2006 projects. The porting part went seamlessly. Had to change some parameter types for a couple of functions' calls due to the unicode support, but otherwise everything is great. I like this...
  5. BoMi

    Solving linker warning

    Hi! I'm a very beginner C++ Builder programmer. So, I guess my question will be simple for you guys here. I've been developing a simple application with two forms: one main and one modal (or even non modal). Adequate files are: main.cpp and modal.cpp. I call and show modal form from main form...
  6. BoMi

    Modal Form Won't Close?

    Hi, again, uh...believe me, I would like I haven't asked all those newbie questions so far. I always try to find answer somehow else and not to bother you guys here. But, I'm still pretty new to Delphi and even OOP, so please forgive me if I ask too much (or I ask stupid questions). Problem: I...
  7. BoMi

    How To KILL Procedure/Action From Another One???

    Hi to all :-)! Well, I have been looking for some time for the answer for this question. I haven't found answer in Delphi or Windows SDK Help files or even on the internet after some searching... Is there an easy (or hard) and efficient (or not) way for killing/terminating a procedure (or...
  8. BoMi

    How to open Paint with image

    Hi, again, to all! I have had hard time with my little application development, and, when I finally thought next steps would be easy, I faced a new problem... I have an Image component on my form where I load pictures through openpicture dialog, like this: public { Public declarations }...
  9. BoMi

    Caption Bar and Animated(custom) Cursors

    Hi to all :-) One thing bothers me for some time now... I'm in process of making an application which contains, for the sake of visual impression, animated cursor. The thing is: when the mouse pointer is on a caption bar of a form, animated cursor changes itself into standard Windows' mouse...
  10. BoMi

    How to animate cursor in Delphi app or to include one?

    Hi,people, as you, probably, guess, I'm pretty new to Delphi (assuming I don't know this what I'm asking), so I will need a lot of help until I'll be able to stand still on the ground of Delphi :-(. Anyway, I have this problem(s): 1. how to put an animated cursor (.ani) in my Delphi application...

Part and Inventory Search

Back
Top