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

    Delphi XE2 and SPNEGO

    Im trying to authenticate to a secured webserver which is using SPNEGO. Does anyone know about code examples components (winsock or Indy addon components) that could help me negotiate with the server? Im currently use Delphi XE2 and Indy 10 but its there exist other Winsock components that are...
  2. Nordlund

    Change expired password on SQL 2005 servers

    Hi. The question: How do I change expired passwords when connecting to MS SQL2005 servers. A password policy that force the users to change password every 60 days is activated on the MS SQl 2005 server. When the password has expipred the user is not able to change the password because the user...
  3. Nordlund

    RegisterDbXpressLib

    Hi. In older versions of delphi (Delphi 7) you could use RegisterDbXpressLib to register dbExpress library within your project. RegisterDbXpressLib is removed in Delphi 2007. They say that this procedure is replaced... but replaced with what? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Do not...
  4. Nordlund

    Exception when closing Delphi 7

    Hi there. I have a problem that have followed me since... world war II... I have a couple of component packs installed in Delphi, and almost every time i close Delphi I get a memory error: Instruction at "0x40009548".... referred to "0x01bb0830" (Translated text from swedish OS. The actual...
  5. Nordlund

    TTreeView and WndProc

    Hi all. I want to be able to control TTreeView.WndProc without creating a subclass to TTreeView. The WndProc procedure is protected in the TTreeView class, and therefore I cannot assign the WndProc to a customWndProc procedure like this: TreeView1.WndProc := MyCustomWndProc; How do I take...
  6. Nordlund

    Changing image when dragging

    Hi. I'm trying to perform professional drag and drop, but I have runned into problems. I have managed to use images instead of cursors when dragging, but I want to be able to change the dragging image on the fly... If I pass a forbidden panel, i want to show a stop sign, but when I pass a...
  7. Nordlund

    Component property editor

    Hi there. Does anyone know about examples and/or documents about writing property editors without using DegignIntF? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Do not underestimate the power of [!]Google[/!]
  8. Nordlund

    Get password expire date

    Is there a way to get the password expire date for a specific user by using SQL? I'm using SQL2005 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Do not underestimate the power of [!]Google[/!]
  9. Nordlund

    NT autentication / kerberos / ntlm ?

    My Problem: I want to send my login credentials (On the domain) to a http based applicationserver to verify that I am who I am. The Applicationserver is a "own-produced" applicationserver with "own-produced" communication protocol and I cant use built in functions to solve this problem...
  10. Nordlund

    Useing Dymanic SQL and Cursors

    Is there a way to use cursors on dymanically created queries or has anyone other solutions in their bags? DECLARE deviceid_cursor CURSOR FOR SELECT * FROM @TableName OPEN deviceid_cursor FETCH NEXT FROM deviceid_cursor INTO @DeviceKey CLOSE deviceid_cursor DEALLOCATE...
  11. Nordlund

    Microlan (1-wire)

    Has anyone experience with Microlan or 1-wire? Examples and datasheets? I've seen a bunch of documents, but all of them requires external .dll files.... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Do not underestimate the power of [!]Google[/!]
  12. Nordlund

    Indy TIdHTTPServer virtual files

    Hi there. My goal is to make a Webserver which can handle virtual files. (Im using Indy's TIdHTTPServer). This is the virtual filetable: AF343BA23F - File1.zip FBE323FBA2 - File2.zip CFADE12167 - File3.zip When the client asks for one of this three files (like this...
  13. Nordlund

    How to capture clicks outside my customform?

    Hi. How do I capture mouseclicks outside my newly created TCustomForm? It should work like the TCombobox dropdownwindow and be closed whenever you click anywhere. Se code below: unit RgListUnit; interface uses StdCtrls, Dialogs, ExtCtrls, Forms, Graphics, Types, Windows, Classes...
  14. Nordlund

    How to post data without Indy or another 3rd party component

    Hi friends. How do I post http data without using Indy or another 3rd party components? I have to use WinInet to perform this. I'm using Turbo Explorer, and this version does not allow me to add 3rd party components... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -"There is always another way to...
  15. Nordlund

    TTabset and TPageController display bugs

    Hi there. I've noticed that the TTabset and the TPageController components arent't drawed propertly when using Windows XP themes and the TabPosition other than tpTop. We're takling Delphi 7... Does anybody has a workaround to this? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -"There is always...
  16. Nordlund

    Drag and drop with shaded images

    Hi folks. I'm trying to do a advances drag and drop project right now. Unfortunately, I have come to a dead end with this project. I have used this link as base for the drag and drop project: http://www.blong.com/Conferences/BorCon2001/DragAndDrop/4114.htm#VCLDragImages I want to redraw my...
  17. Nordlund

    compile by using dcc32 in command line.

    Hi folks. I want to automate the build process by using the command line compiler. I'm able to compile some smaller projects, but when I try to compile the main application (about 200000 rows) I get strange error saying this class cannot be found etc, etc. I must have forggotten something...
  18. Nordlund

    MinimimUsedWidth in TListView

    Hi there. How do I make the TListView to show each column by it's "minimum used column width". The viewstyleis vsReport by the way... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -"There is always another way to solve it, but I prefer my way.
  19. Nordlund

    How to intercept Paste within a TMemo

    Hi folks. I'm in a good mood today. This is how to intercept cut'n'paste in a TMemo. Enjoy...... unit MemoEx; interface uses ClipBrd, Windows, Messages, SysUtils, Classes, Controls, StdCtrls; type TStringEvent = procedure(Sender: TObject; var s: String) of object; TMemoEx =...
  20. Nordlund

    Best Practice, Send and recieve textmasses from DLL

    Hi there. What's the best way to send/recieve textmasses from/to a Dynamic link library? You may not use Delphi ShareMem unit. Should I solve it in another way, or is may way the preferred way :-) (The way I split First and Lastname can be solved more efficient, but it is'nt the main issue in...

Part and Inventory Search

Back
Top