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

    Delphi XE8 and FireDAC

    Hello, I am trying to use the builtin database engine FireDAC in Delphi XE8, we are using MS SQL Server as database. FireDAC works pretty good but I have run into problems with some functionality in my application! I sometimes get a message like this "ODBC SQL Server driver, the connection is...
  2. Kenbla

    DockForm not found using Delphi XE8

    Hello, I work with an upgrade from an old Delphi version to the newest XE8 and run into problems when I try to compile the application. I get an errormessage in the Embarcadero file ToolsAPI.pas saying "ToolsAPI.pas(18): F2613 Unit 'DockForm' not found". I have searched on the Internet and found...
  3. Kenbla

    PDF file stored as blob in the database

    Hello, I have PDF file which is stored in a blob column in an SQL Server database. The blob was created by a .Net web service (WCF) as a byte array. In my Delphi XE application I am supposed to "decode" the byte array blob and show the PDF file as it looked originally. Is this possible to do...
  4. Kenbla

    Use the TAB key to move focus to a listview

    Hi there! I have run into a problem with my Delphi XE application! I have a form where the users can search for records, the result of the search are displayed in a listview. All that works fine, now to the problem! When the user use the TAB key to move around in the form they can't get to the...
  5. Kenbla

    Mail containing swedish special characters

    Thanks majlumbo, my email messages looks good now thanks to you!! I had to change to ContentType to "MailMessage.ContentType := 'multipart/mixed';" when I had files attached to the mail! My code looks liket this right now: if lvwFiler.Items.Count > 0 then MailMessage.ContentType :=...
  6. Kenbla

    Mail containing swedish special characters

    Thanks for your reply Majlumbo! CharSet := 'UTF-8' is my last line of code before sending the mail! So that was not my problem. I find it interesting though that if I have any swedish special characters i the Subject part of the mail everything works fine! If there are no special characters in...
  7. Kenbla

    Mail containing swedish special characters

    Thanks for your reply TonHu. I have noticed another thing: If I have any of the swedish special characters in the Subject part of the mail. The message looks OK, isn't that kind of interesting? Any explanation to that? Regards, Kenbla
  8. Kenbla

    Mail containing swedish special characters

    Hi all, I have a Delphi XE application which sends mails upon request. It works rather well but I sometimes have a problem with the swedish special characters åäö and ÅÄÖ. When I send a mail to a number of recipients it looks OK for most of them but not for all! The special characters doesn't...
  9. Kenbla

    Cursor position

    Thanks Glenn9999, that works just fine!
  10. Kenbla

    Cursor position

    Hello, I have a questions for you. I need to know the position of the cursor in TMemo object. The users can enter information in the TMemo object and when they push a button on the form I need to know what the current position is in that field. Is this an easy task or? We use Delphi XE. Regards...
  11. Kenbla

    Delphi XE Form inheritance

    I have a form which contains an inherited TToolbar and TStatusBar in Delphi XE. When I run the form I can see the items from the inherited toolbar and statusbar BUT I can't access these items from the IDE (not declared!)! How is this possible? Does anyone have any clue? The form was originally...
  12. Kenbla

    Send mail containing special characters

    Hello, and thanks for your replies. I don't have any idea what mail-clients the users have! They are spread around the world at different companies. I use MS Outlook and it works fine when I receive the mailmessages.
  13. Kenbla

    Send mail containing special characters

    The mails that are sent from my Delphi application goes to one mailserver and that mailserver distributes the mail to a number of different mailservers across the world. I don't have any idea what the client PC's looks like. Can the different mailservers and/or client PC's be "unicode uncompliant"?
  14. Kenbla

    Send mail containing special characters

    Thanks for your advice. I have tried it but unfortunately it didn't help. It still looks the same!
  15. Kenbla

    Send mail containing special characters

    I'm using the TidSMTP and TidMessage classes to send e-mail
  16. Kenbla

    Send mail containing special characters

    Hi all, I have a Delphi XE application which sends mails upon request. The mail function works rather well but I sometimes have a problem with the swedish special characters åäö and ÅÄÖ. When I send a mail to a number of recipients it looks OK for most of them but not for all! The special...
  17. Kenbla

    Accessing the Active Directory (AD) from Delphi

    I have verified my code once again and discovered that we are using a combination of WinNT and LDAP! and I don't know if that's good or bad! Are there any major code changes that I have to do if I want to use WinNT instead of LDAP? My LDAP code currently looks like this: AdsDomain :=...
  18. Kenbla

    Accessing the Active Directory (AD) from Delphi

    Hi Daddy! and thanks for your reply. We use LDAP.
  19. Kenbla

    Accessing the Active Directory (AD) from Delphi

    Hello, I'm responsible for a Delphi XE application which handles users and user administration. It accesses the AD when users are added, modified or when new passwords are set etc. All these methods are very slow! It takes minutes to perform them sometimes up to 10-15 minutes which is very...
  20. Kenbla

    Delphi XE and unbound TdbGrid

    Thanks again Majlumbo, I have added a popup menu to the form and when the user choose "Delete" from the popup menu the following code gets executed: cdClientDataSet.DisableControls; cdClientDataSet.Delete; cdClientDataSet.EnableControls; This removes the row from the clientdataset. I think...

Part and Inventory Search

Back
Top