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 d3sol4t3

  1. d3sol4t3

    Outlook VBA retrieve 'Alias' from email address?

    Hi Tony, Im getting the email address from outlook, I've created code that when I highlight an email and press my macro button it will extract the sender, body and title of the email. I work in a big company and we are using exchange server. The alias is also the persons pc username, which I...
  2. d3sol4t3

    Outlook VBA retrieve 'Alias' from email address?

    Hi, Is it possible to retrieve the 'alias' of a user from their email address? Kind Regards,
  3. d3sol4t3

    GetPixel() function

    Ok no worries, fixed my problem, case closed!
  4. d3sol4t3

    GetPixel() function

    Ok right used hex function to convert to hex, but the actual program itself does not work, it returns either FFFFFF (white) or 808080 (grey), i tried it on a program i created which had a pure blue background and it returned FFFFFFFF :( Current code im using: Private Declare Function...
  5. d3sol4t3

    GetPixel() function

    Actually nevermind that i fixed it :) Using the above code ^^ Msgbox (Color) - the messagebox returns an 8 digit number, how would i convert that to hex using VB?
  6. d3sol4t3

    GetPixel() function

    Thx 4 the reply :) Slight problem code looks like this : Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long Private Declare Function...
  7. d3sol4t3

    GetPixel() function

    If it helps heres the window id of the window im trying to get the pixel from: Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long Private Declare Function FindWindow Lib...
  8. d3sol4t3

    GetPixel() function

    Hey! Im fairly new to programming and was wandering if anybody could help me with GetPixel() Right the problem is that im trying to make a card counter, so im trying to detect a card played in a different window. The problem is that i have no idea how to detect the colour of a pixel in...
  9. d3sol4t3

    Adding to a MySQL database

    Would it be possible for somebody to 'repair' my script? Im confused on how to do it. Thanks
  10. d3sol4t3

    Adding to a MySQL database

    How comes though the exact code i posted above worked on one host and doesn't on another?
  11. d3sol4t3

    Adding to a MySQL database

    How would i turn register globals on, without going direct to my host?
  12. d3sol4t3

    Adding to a MySQL database

    Hi a script i put together was working until a moved hosts, all it does is add to a MySQL database depending what was entered into the HTML form. code for add.php (adds to the database) http://www.googlethedamnthing.com/pastebin/index.php?postid=9 code for add.html (add.php enters details...
  13. d3sol4t3

    PHP MySQL search

    Well heres the PHP that im using that errors: http://www.illworm.com/Search.txt Error: http://www.illworm.com/adm/Srch.php
  14. d3sol4t3

    PHP MySQL search

    So im replacing this: echo "<tr> <td>$headline</td> <td>$url</td> </tr>"; with <tr> <td> <?=$row['headline']?> </td> <td> <a href="http://www.illworm.com/path/to/fulltext.php?h=<?=$row['id']?>"> http://www.illworm.com/path/to/fulltext.php?h=<?=$row['id']?> </a> </td> </tr> That...
  15. d3sol4t3

    PHP MySQL search

    Oops i forgot to add that the PHP im using in Srch.php can be found here: http://www.illworm.com/adm/Search.txt

Part and Inventory Search

Back
Top