Search:

Type: Posts; User: whatsup

Page 1 of 13 1 2 3 4

Search: Search took 0.40 seconds.

  1. Replies
    16
    Views
    4,040

    Re: directx late binding

    thanks.
    will try it.
  2. Replies
    16
    Views
    4,040

    Re: directx late binding

    really good.
    so what the string name i need to pass to CreateObject
    or even better
    how to get that string name from visual basic ?
    does it appear in the object browser ?
  3. Replies
    16
    Views
    4,040

    Re: directx late binding

    it's early binding.
    that why i opened the thread.
    i wanted to know if the classes in the struct, can be created with late binding.

    anyway here it is.


    Attribute VB_Name = "Module_DirectShow"...
  4. Replies
    16
    Views
    4,040

    Re: directx late binding

    using Visual Basic of course
  5. Replies
    16
    Views
    4,040

    Re: directx late binding

    thanks.
    that's what i was afraid of.
  6. Replies
    16
    Views
    4,040

    Re: directx late binding

    thanks.

    "DirectShowBuf" is the name i gave for the struct.
    it's not the DirectShow name that CreateObject identifies.
  7. Replies
    16
    Views
    4,040

    Re: directx late binding

    no.
    but that's exactly what i'm looking for.
    what name to pass to CreateObject ?
  8. Replies
    16
    Views
    4,040

    directx late binding

    hey all

    i need to write a directx/show code that uses late binding
    i have a code that uses early binding:
    for example these few line:

    Type DirectShowbuf
    Event As IMediaEvent
    Control...
  9. Thread: email sender

    by whatsup
    Replies
    37
    Views
    24,756

    Re: email sender

    the ssl engine won't work anymore for live server because microsoft made changes to that server
    so now the ssl engine is useless
    what still works, is CDO engine with gmail
  10. A question to Lavolpe or anyone who can answer

    i'm trying to get the color table of a 8bpp bmp with this API:
    GetDIBColorTable
    but the table is so bad
    and the resulting bmp different from the origin

    my steps are:
    1. loading a 8bpp bmp via...
  11. Replies
    1
    Views
    795

    Re: how to convert 32 bitmap to 8 bitmap

    i found this
    http://www.codeproject.com/Articles/7124/Image-Bit-depth-conversion-from-32-Bit-to-8-Bit
    and it solved my problem
    but i also would like to see other ways
    thanks.
  12. Replies
    1
    Views
    795

    how to convert 32 bitmap to 8 bitmap

    i need as short and simple code as possible
    thanks in advanced
  13. Replies
    25
    Views
    7,466

    Re: Webcam stopped working after VB6 program

    thank you dilettante for your effort
    your app worked, but when i tried to select the webcam, it gave an error.

    anyway for my problem, what i discovered is that if i try several times, then it...
  14. Replies
    25
    Views
    7,466

    Re: Webcam stopped working after VB6 program

    dialettante:
    in my case i don't use any program other than the one i wrote and which doesn't touch the registery
    everytime i restart the computer everything works fine,
    but after the first run...
  15. Replies
    25
    Views
    7,466

    Re: Webcam stopped working after VB6 program

    hey, it also happened to me
    but i think the problem is only when the cam use the old VFW
    i have a c program that uses the VFW, and the result is the same.
    the cam stop to work on this program,...
  16. Replies
    18
    Views
    6,693

    Re: How to embed an executable in VB program

    here it is
  17. Replies
    18
    Views
    6,693

    Re: How to embed an executable in VB program

    to embed + extract anything from an executable is very simple task
    (you can find how, on one of my posts)
    to run it in memory i think it can be complicated
    what i would do is run it in a temporary...
  18. Re: absoule beginner question: how to use style

    thank you both
    the link helped to find the tag i was needed
    all tags i tried inserted CR <br> at the end of them
    but this tag - span - didn't
    and this is exactly what i was looking for
    thank you...
  19. [RESOLVED] absoule beginner question: how to use style

    hey all.
    i want to do simple thing
    change font style (color,face,...)

    i read that <font> is deprecated, and i should use style
    the problem is that inline style (from what i read) can be used...
  20. Replies
    3
    Views
    7,334

    Re: make textfield search listbox

    in general what you need to do
    is to compare each string in the listbox with the text field
    and then set the visible property of the string
    but..
    i looked in the MSDN, and didn't see any visible...
  21. Replies
    2
    Views
    1,320

    Re: Downloading an Image using Visual Basic 6.0

    i think you can use this one



    Declare Function URLDownloadToFile Lib "urlmon" ( _
    pCaller As Any, _
    ByVal szURL As String, _
    ByVal szFileName As String, _
    ByVal dwReserved...
  22. Replies
    4
    Views
    721

    Re: is this a known issue ?

    thanks for reply.

    the first 2 guesses are correct.

    the 3 i don't understand.
    ususally when i subclass a window i get wm_keydown with other parameters

    in this particular control, i don't get...
  23. Replies
    4
    Views
    721

    Re: is this a known issue ?

    thanks dilettante for replay, i'll try explain again the first way

    i open a new project - activex usercontrol

    in the init event of this UC, i create a child window with class "SysListView32"
    ...
  24. Replies
    4
    Views
    721

    is this a known issue ?

    hey everyone.

    i have a usercontrol
    inside the usercontrol i have a WINDOWS listview control (not the vb one)
    i subclass the user control to get messages

    when i put this usercontrol in an...
  25. Re: Subclassing usercontrols (Previously: App closing sequence)

    i'm facing issues with subclassing uc

    i created a listview window on vb uc
    then subclass the uc to get messages,

    one of the issues for example is:
    the uc doesn't get some messages if there...
  26. Replies
    11
    Views
    2,701

    Re: [RESOLVED] how to terminate custom control

    thank you for sharing.
    i knew about this and i decided to go on the array because i think it more faster
    searching a long handle in array can be faster than searching a string.

    that's the only...
  27. Replies
    11
    Views
    2,701

    Re: how to terminate custom control

    thank you very much lavolpe.
    yesterday i got this idea from your previous post.
    and now i just finished to check it, and it works perfectly

    i didn't change anything in your code

    mycode is this
  28. Replies
    11
    Views
    2,701

    Re: how to terminate custom control

    thanks.

    yes that's what i have.
  29. Replies
    11
    Views
    2,701

    Re: how to terminate custom control

    thanks for reply.

    i do have a reference, i have a global array that keeps the controls ptr
    but the problem is, the only way to free this pointer is when the terminate
    event is called,
    but this...
  30. Replies
    11
    Views
    2,701

    [RESOLVED] how to terminate custom control

    i just discovered that when i unload a form with usercontrol on it
    the usercontrol's terminate event doesn't get call (only at the end of the program)
    so for now, i've created a terminate method to...
  31. Replies
    8
    Views
    19,806

    Re: VB6 - Wireless Network API Exposed

    i just tried it on vista and got a crash.
    i run it outside the ide, (i don't have vb6 on vista)
    the crash was from the vb6vm.dll (something like this)

    but thank you anyway, i can test this with...
  32. Replies
    8
    Views
    19,806

    Re: VB6 - Wireless Network API Exposed

    i need this, and hope to make something usefull of it :)
    i'll test it, and report sometime later
    thanks.
  33. Replies
    2
    Views
    3,913

    Re: new controls - ListView & RichText

    bug fixes
    both controls checked and they work.
    still need more properties though.
  34. Replies
    2
    Views
    3,913

    Re: new controls - ListView & RichText

    updates to the controls
    many properties added to the richtext
  35. Replies
    2
    Views
    3,913

    new controls - ListView & RichText

    hey all.
    these are my new controls, they work on Windows7

    i didn't make many tests, and there are still somethings to do
    but they work, so i thought i share them now.
    i may upload new updates...
  36. Thread: email sender

    by whatsup
    Replies
    37
    Views
    24,756

    Re: email sender

    i added a new version with new listview control
    i tested this on windows7 and it works well.
    no ocx file is required.
  37. Thread: Sending email.

    by whatsup
    Replies
    8
    Views
    2,248

    Re: Sending email.

    hey needhelp
    i'm sorry for the late reply.
    i just tested this in windows xp
    and it works here well.

    so first i can suggest you check your setting again.
    for example, to send email to hotmail...
  38. Thread: Sending email.

    by whatsup
    Replies
    8
    Views
    2,248

    Re: Sending email.

    on my signature there is what you're looking for
  39. Thread: unsigned_int64

    by whatsup
    Replies
    2
    Views
    925

    Re: unsigned_int64

    you can declare the function that in the dll something like this

    assuming this is the c function

    void MySub(unsigned_int64 My64UInt);

    in Basic you can try

    Declare Sub MySub Lib "MyCLib"...
  40. Replies
    18
    Views
    2,260

    Re: Virtual PC 32 bit

    the last time i checked vmware (about a month ago)
    the 64 support also required cpu with hardware-vt.
Results 1 to 40 of 496
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width