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: *

  1. bearsite4

    Is there a way to check if e-mail address exists?

    Hi, I'm not being sarcastic and really I'm not accusing anyone of lying :) Maybe I didn't choose the right words though. I intended no offence of course.
  2. bearsite4

    Form submission with mailto

    I'm trying to create a form that sends of an e-mail with a mailto target. I've followed everything in the example tutorial. Anyway, Outlook keeps popping up but I was hoping that the e-mail sending would be seamless. So I basically want a way to stop Outlook from opening. Any hints on...
  3. bearsite4

    How to freeze text size?

    I think you can also do this by setting font-size in pixels (px) instead of points (pt). The problem with this, supposedly, is that it does not print well- if that is really a problem.
  4. bearsite4

    Is there a way to check if e-mail address exists?

    Are you sure you've seen it before. I doubt you could, otherwise some spammer would have created a program and we'll all be with overtaken junk mail.
  5. bearsite4

    Netscape Javascript Error Notice

    How do I know when there's a js error with Netscape. IE has that little sign in the status bar. When you click on it it also gives you details of the error making debuggin easier. Does N6.1 also have something like this?
  6. bearsite4

    Anyone got the D6 Personal license.txt?

    Just what I wanted to hear. Thanks Vop.
  7. bearsite4

    Anyone got the D6 Personal license.txt?

    Hi Steve, From the license file: " From time to time, Borland may designate other files as Redistributables. You should refer to the documentation, including any "readme" or "deploy" files included with the Software, for additional information. " I don't suppose...
  8. bearsite4

    Setting the name property of a new component

    Oops, I misread your question, I was in a hurry this morning. I may be wrong, since you say you can get it to work, but it seems to me that setting the Name property inside the SetName method would lead to infinite recursion as SetName will continually be called. Personally, I would set the...
  9. bearsite4

    Setting the name property of a new component

    Here's an example: property FlashRate : Integer read FFlashRate write SetFlashRate default 800; This is where I got the info: http://www.kaposnet.hu/books/tysdelphi4/ch20/ch20.htm
  10. bearsite4

    Setting the name property of a new component

    You want to set the default name property to a compoany standard so you don't have to keep typing it manually, is this correct? If so, I remember reading there's a keyword for it. I don't have a lot of time now, so I'll look for it later and post again.
  11. bearsite4

    Anyone got the D6 Personal license.txt?

    Great, thanks alot.
  12. bearsite4

    Anyone got the D6 Personal license.txt?

    I know it's a stupid thing to do, but I deleted the license file when I was running a bit low on disk space. Now I want to give out my application which is dynamically compiled but I'm not sure about the licensing of redistributing the vcl.bpl, rtl.bpl and such. I've tried searching for the...
  13. bearsite4

    Links within one pic

    There is one program I used to use a while ago which is called MapThis!. A search with google will probably turn itup. I found it extremely easy to use and it produces the code for you.
  14. bearsite4

    c under unix

    Are you familiar with the c language? The compiler is gcc or g++ for c++. Say you had a hello.c file, to compile you would type: 'gcc hello.c'. This will produce the executable file 'a.out'. To run it, type: './a.out'.
  15. bearsite4

    My program remembers the height and

    Yep, that's exactly what I do. It used to work fine, then I experienced a period of quirkyness but now it seems to be ok again.
  16. bearsite4

    ActiveX

    Okay, thanks.
  17. bearsite4

    My program remembers the height and

    My program remembers the height and width of the program when it exits so it can restore it later. The window starts at a default x by y say, then it correctly changes to the user's previous dimension p by q. All's going well until the breakpoint at Application.Run. After that one innocent...
  18. bearsite4

    How do i add a component??

    Sggaunt, Like I said, I recently found installing components a nightmare so I thought a might give him a little bit of extra advice.
  19. bearsite4

    Clarify a concept

    What I meant was that (I'm not entirely sure but I think) when functions/procedures expect a object parameter, that parameter is passed by reference. So given a class definition: //class field private o1: object; The constructor should have: constructor s( o: TObject ); begin o1.assign(...
  20. bearsite4

    Clarify a concept

    I remember reading that with parameters are passed: 1. value for primitives, strings and one other 2. reference for objects So, generally with constructors, you should do an assign if it takes any object parameters to prevent corruption of your object. Is this correct?

Part and Inventory Search

Back
Top