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 derfloh 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. 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
  16. d3sol4t3

    PHP MySQL search

    Right ok i made a basic search script which works fine. Theres a feature i wanted to add whichi just cant figure out how to do: getting the id of the headline. Search in use: www.illworm.com/adm/Search.html <===search for test it will take you to http://www.illworm.com/adm/Srch.php I...
  17. d3sol4t3

    PHP MySQL search

    Hello can anybody help me out with a search script. What im trying to do: Make a simple search script that allows user to enter search term, script searches field 'headline' in table 'article' for headline and displays any matching results which are heperlinked. The hyperlink text leads to the...
  18. d3sol4t3

    limiting amount of rows displayed from database

    Hi, how would i limit the amount of rows displayed from database? Example http://www.illworm.com/adm/main.php look in the big green table in the middle of the page, the one where i have 10 rows saying 'How many rows'. Say if i wanted to limit the amount displayed to 8, what code would i...
  19. d3sol4t3

    Alligning Tables Problem

    It has a "read more" function in the php code, it only takes the first couple of words then adds "... read more". The problem doesn't lie if theres too much data, it lies if there is too little
  20. d3sol4t3

    Alligning Tables Problem

    m8 can't you just tell me how to set the maximum size, im on a time limit, i dont have time to read up on CSS!

Part and Inventory Search

Back
Top