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 TouchToneTommy 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 ICISYD

  1. ICISYD

    HTTP Messenger Proxy

    Currently I have been working on a proxy for Microsoft Messenger, because it is unable to authenticate with our network. Does anyone know how I can do this? On the project as it stands, a Winsock and an Inet control are in use and Microsoft Messenger now connects to the Winsock, sends the...
  2. ICISYD

    File system qwerk

    Does anyone know why you cant use the command GetAttr("C:\pagefile.sys")? Any help would be appricaited.
  3. ICISYD

    Disable Ctrl + Alt + Delete

    Thanks for the help.
  4. ICISYD

    Disable Ctrl + Alt + Delete

    Does anyone know a way to disable ctrl + alt + delete in 2000/XP? Any help would be much appreciated.
  5. ICISYD

    how to get value from list view when DblClick ?

    All you need to do is put in a double click event on the List View. To find out which icon they clicked on, just use the .SelectedItem.Text property. If .SelectedItem.Text is "" then they have not selected anything, ie Private Sub ListView1_DblClick() Msgbox...
  6. ICISYD

    Icon Backround

    Thanks for the help, it will be extremely useful.
  7. ICISYD

    Icon Backround

    I am using the DrawIcon api from "user32.dll" to put an icon into a picture box, for use in an imagelist. Unfortunately when doing this the icon looses all areas of transparency and ends up with a white backround. Is there any way I can fix this? Here is the code that does it: Sub...
  8. ICISYD

    Image List

    Thanks for all the help. The code will certainly be useful.
  9. ICISYD

    Image List

    Do you know how to load an icon, for example "C:\Program Files\Internet Explorer\iexplorer.exe,1" into a image list? Any help would be much appreciated.
  10. ICISYD

    How do I convert Bytes to bits in VB

    You could use code like this: Dim sInput, sOutput As String Dim iASCIICode As Integer Dim i As Integer sInput = "100001100100011011000110" For i = 1 To Len(sInput) Step 8 iASCIICode = 0 iASCIICode = CInt(Mid(sInput, i, 1)) * 128 iASCIICode = iASCIICode + CInt(Mid(sInput, i...
  11. ICISYD

    Dynamic array declaration

    Before you can use Messages you have to ReDim it. Eg... Dim aMyArray() As String 'The array Dim iNoItems As Integer 'The number of items Sub AddToArray(byVal sToAdd As String) ReDim Preserve aMyArray(iNoItems) aMyArray(iNoItems) = sToAdd iNoItems = iNoItems + 1 End Sub...
  12. ICISYD

    How to Flash Messages while a long process is going?

    Try using DoEvents(). Basically it allows other things to run. So what you could do for example is... Sub Form_Load() Timer1.Interval = 1000 Call LengthyProcess Timer1.Interval = 0 End Sub Sub LengthyProcess() Dim i As Integer For i = 0 to 10000 'Make File or do...
  13. ICISYD

    Viewing lists of files

    Cool thanks
  14. ICISYD

    Viewing lists of files

    Thanks for that. Do you know where I would find the icons that windows uses for pictures, videos, text files etc...? It would be better yet if it used the same icons as the other programs on the computer. Is there any way of doing this?
  15. ICISYD

    Viewing lists of files

    Are there any controls or ways to display a file list with icons? Preferable much like in windows explorer. All I have is a list of file names in a string. Any help or suggestions would be much appriciated.

Part and Inventory Search

Back
Top