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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by swim

  1. swim

    Support vector machine ?

    Hi, all I'm going to program Haar Wavelet for image analysis. I wonder how to program Support vector machine(SVM). Thanks for any help.
  2. swim

    how to program uPnP?

    Thanks for whosrdaddy, I'll try it.
  3. swim

    how to program uPnP?

    Oh, yes. I used Plug-and-Play Tester(http://noeld.com/programs.asp?cat=dstools#UPnPTest) and got: Description: High Speed USB Print Server DeviceType: urn:schemas-upnp-org:device:PrintServer:1 FriendlyName: Print Server PS-22E21D Manufacturer: D-Link ManufacturerUrl: http://www.dlink.com/...
  4. swim

    how to program uPnP?

    I used UDP multicast to address 239.255.255.250 on port 1900 and sent the string as: tmpstr:='M-SEARCH * HTTP/1.1'#13#10 +'HOST: 239.255.255.250:1900'#13#10 +'MAN: "ssdp:discover"'#13#10 +'MX: 3'#13#10 +'ST: upnp:rootdevice'#13#10#13#10...
  5. swim

    how to program uPnP?

    Hi, Can I program via uPnP to find any machine's IP and port on my local net which supports uPnP? Thanks advanced.
  6. swim

    Does Delphi support SIP programming?

    whosrdaddy, Thanks for help. I've got it. I think that it should be rewrite with Indy10.
  7. swim

    Delphi supports GetAdaptersAddresses?

    Hi, I wrote a C++ Dll to use GetAdatpersAddresses to get local IPv6 IP address. It works fine. Is it can be done with delphi? Thanks advanced.
  8. swim

    Does Delphi support SIP programming?

    Hi, Anyone knows that Delphi supports SIP(Session Initiation Protocol) programming? Both of Server side and Client side? Thanks advanced.
  9. swim

    How to handle Navigation keys (Tab, arrow keys) with OnKeyDown ?

    Thank aaronjme. I used TRadioButton which will has focus when be selected. That is the reason what happened.
  10. swim

    How to handle Navigation keys (Tab, arrow keys) with OnKeyDown ?

    Yes, I did. But the down arrow key doesn't fire the onkeydown event.
  11. swim

    How to handle Navigation keys (Tab, arrow keys) with OnKeyDown ?

    I know that navigation keys (Tab, BackTab, the arrow keys, and so on) are unaffected by KeyPreview because they do not generate keyboard events. But I really want to handle Navigation keys with OnKeyDown event. I added the codes as follows, but it still does not work: procedure...
  12. swim

    Change system menu's item text

    Hi, Use the following code to change system menu item text. It works well, but the icon on the left of the item disappeared. The same problem is with AppendMenu function. Any help? procedure TForm1.ChangeSystemMenuItemText; const strCLOSE = 'Close This Window'; var SysMenu : HMenu...
  13. swim

    Does delphi support getaddrinfo function?

    Griffyn, thank you for your kind help. Could you please tell me where to download the IPv6 TCP stack ? Thanks
  14. swim

    Does delphi support getaddrinfo function?

    whosrdaddy, I tried your code. It seems that it returns ipv6 address under Windows 2003, but under windows xp, it returns ::1 (loopback address)?
  15. swim

    Does delphi support getaddrinfo function?

    Thanks for Griffyn and whosrdaddy. I'll try it.

Part and Inventory Search

Back
Top