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: swim
  • Order by date
  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.
  16. swim

    Does delphi support getaddrinfo function?

    UDPClient.Binding.IP is a left value? I need a right value to show my IPv6 address.
  17. swim

    Does delphi support getaddrinfo function?

    Thanks all. Delphi7 uses Indy9. I remove it and install Indy10. Put a TIdUDPClient on the form and set its IPVersion=IPv6, then get my PC's addr by: GStack.LocalAddress The answer is still IPv4 addr, not IPv6(I do have IPv6). GStack.LocalAddresses return the same IPv4 addr. Any help?
  18. swim

    Does delphi support getaddrinfo function?

    whosrdaddy, thank you for your rapidly answer. I used Delphi 7, does it use Indy9 or Indy10? If delphi7 used Indy9, should I install Indy 10? Thanks a lot
  19. swim

    Does delphi support getaddrinfo function?

    Hi, Anyone knows that does delphi support getaddinfo() function which is used for get host ipv6 addr? I can't find it in winsock2.pas. Thanks!!!
  20. swim

    how to code for clock synchronization ?

    Hi, Any one knows how to code for PCs clock synchronization? Thanks a lots! Swim

Part and Inventory Search

Back
Top