Search:

Type: Posts; User: Max187Boucher

Page 1 of 13 1 2 3 4

Search: Search took 0.06 seconds.

  1. Re: VB6 WebBrowser reverts to IE6 no matter what I do

    You probably know (or might not matter anymore) but you know the webbrowser has a useragent parameter in webrowser1.navigate.
    I'm happy you got it working! Yes there is a resolved button under...
  2. Re: VB6 WebBrowser reverts to IE6 no matter what I do

    With internet explorer have you tried changing the document emulation settings (its in the IE developer tools "F12") or perhaps the useragent?
    Not sure if IE8 has the ie developer tools... Check it...
  3. Re: [RESOLVED] Listview clear/adding items blinking, best approach to stop the blink

    Olaf, what did you use to create the object/surface of the W_ implementation?
  4. Re: [RESOLVED] Listview clear/adding items blinking, best approach to stop the blink

    How do I know which event can bubble? Do you have a documentation on the events of your controls? I can find it out by debug.print in the bubble event, but since I'm thinking of exploring RC5 I will...
  5. Re: [RESOLVED] Listview clear/adding items blinking, best approach to stop the blink

    I thought about using memdb afterwards but this gives a better idea of how I could do it (with a listclick event) thanks again Olaf
  6. Re: [RESOLVED] Listview clear/adding items blinking, best approach to stop the blink

    Olaf how can I get the text of an item?
  7. Re: [RESOLVED] Listview clear/adding items blinking, best approach to stop the blink

    So I got it working like I wanted except one thing is not working properly (i think)



    'Form_Load code
    .....
    Set lstBids = ucPanel1.Widgets.Add(New cwVList, "lstBids", 4, 4, 200, 300)
    Set...
  8. Re: [RESOLVED] Listview clear/adding items blinking, best approach to stop the blink

    Much appreciated again, I can work from these examples, how would you suggest changing the back color of a cell am I doing it correctly?



    Private Sub DrawListItem(Rs As cRecordset, ByVal Index...
  9. Re: VB6 WebBrowser reverts to IE6 no matter what I do

    Does not seem to be the emulation key this time as he says it shows up in Internet Explorer itself. I feel like maybe the user did a system restore or his ie did not install properly? Is that the...
  10. Replies
    10
    Views
    1,394

    Re: Send Email

    Quick tip when trying to send emails, if it doesn't work don't panic it's the SMTP Server you are using either not allowing you to use their service or wrong port/authenticate/ssl/tls... the best one...
  11. Re: [RESOLVED] Listview clear/adding items blinking, best approach to stop the blink

    Very nice demo Olaf I got it to work, now a new question can you add widgets to normal vb forms? Or do I have to work with the new form that contains the widget... or perhaps can I move the whole...
  12. Replies
    6
    Views
    1,186

    Re: 24 to 12-time hour format

    Debug.Print Format(Now, "hh:mm:ss")
    Debug.Print Format(Now, "hh:mm:ss am/pm")
  13. Re: [RESOLVED] Sorting multiple text boxes by ascending/Descending order (VB6)

    If your going to use CInt() you better check to make sure the text in the textbox is numeric and that it has a number in it or else I would suggest using Val() if textbox is empty it will return 0...
  14. Re: Get the color underneath the transparency

    It needs to be Graphical.
  15. Re: Listview clear/adding items blinking, best approach to stop the blink

    Flickers



    With ListBid
    .ListItems.Clear
    Set Rs = BitFinex.MemDB.GetRs("SELECT * FROM vwBookBids")
    Do While Not Rs.EOF
    DoEvents
    Set lstItem =...
  16. Re: Listview clear/adding items blinking, best approach to stop the blink

    Didn't think about krool's common control will have a look at it, I was using mshflexgrid which works but, was just experimenting with the listview, thanks will post back

    Edit:
    Used Krool's...
  17. Re: Listview clear/adding items blinking, best approach to stop the blink

    I tried like this



    Public Sub UpdateBooks()
    Dim Rs As cRecordset 'vbrichclient5
    Dim lstItem As ListItem
    LockWindowUpdate Listview1.hWnd
    With ListView1
    .ListItems.Clear
  18. [RESOLVED] Listview clear/adding items blinking, best approach to stop the blink

    I am currently adding like this



    Public Sub UpdateBooks()
    Dim Rs As cRecordset 'vbrichclient5
    Dim lstItem As ListItem

    With ListView1
    .Visible = False
  19. Re: VB6 WebBrowser problem... a serious problem!

    There is another key under Local_machine i think, have you tried changing useragent? I think it would be ideal to use Olaf's example the api will be 80% faster (if not more) with no errors or...
  20. Re: VB6 WebBrowser problem... a serious problem!

    Olaf's project will be a lot better to use i guarantee.
    If you want the registry key i gave you the link in Post #3 which i point out the registry key and Olaf gave a nice sample in that thread too...
  21. Re: Problem calculating amount of lines in a form

    Make sure the control is autoredraw whichever one you draw on and maybe a refresh without more information its hard to say but it should be very simple and straightfoward.
  22. Re: VB6 WebBrowser problem... a serious problem!

    Dont have time to look into it but i think they have a google map API not sure if its free or not. But if my first suggestion does not work then you could have a look at the api.
    I thought there was...
  23. Re: VB6 WebBrowser problem... a serious problem!

    It think its because the webbrowser control does not get updated in the registry when upgrading IE so please follow this link either mine or Schmidt (which is a class and a lot easier to use)...
  24. Re: [RESOLVED] Help communicating with web API (bitfinex)

    Perfect example thank you I should be good for a bit now
  25. Re: [RESOLVED] Help communicating with web API (bitfinex)

    Thanks Olaf I didn't expect another class :) but I'll just update yours since you added the Authenticated (which I was gonna get to tonight), if I wanted to select one field (let's say 'mid') from...
  26. Re: [RESOLVED] Help communicating with web API (bitfinex)

    I am changing my cBitFinex Class at the moment, I ran into DB issue since I'm new with this DB stuff... how would I select from a recordset.. I know it's something like db.GetRS("Select mid From...
  27. Re: [RESOLVED] Help communicating with web API (bitfinex)

    I am looking at this page here Olaf..
    http://www.vbforums.com/showthread.php?732999-VB6-(ActiveX-Exes-and-selfhosted-Threading)&highlight=multi+thread

    Would I be able to do this with my cBitFinex...
  28. Replies
    6
    Views
    7,718

    Re: Cannot create ActiveX component.

    No need for multiple threads we will help when we can.
    http://www.vbforums.com/showthread.php?794769-Excel-Process-won-t-turn-off
  29. Replies
    6
    Views
    7,718

    Re: Cannot create ActiveX component.

    Maybe add a 'Set' infront?
  30. Re: Program runs OK in IDE mode but VB6 crashes when I try to compile

    Save project restart pc then try again?
  31. Re: Generated Random Number 1 to 100 get all, odd and even without repeat using timer

    Create an array or collection with numbers 1-100 then use rnd between lbound and ubound of your array and when picking a number use that random number for the index of your array and remove that...
  32. Re: Select a line of a simple text file item search, to delete.

    It's just the behavior of Win XP it's normal it's ok your not crazy james
  33. Re: [RESOLVED] Help communicating with web API (bitfinex)

    I won't be needing to store these in a DB (but thanks for the example!) as they are updated frequently and no need to keep track of that list.. For now anyways
  34. Re: [RESOLVED] Help communicating with web API (bitfinex)

    EDIT... Was working all along, just didn't notice my debug window didn't keep all 600 results lol and only the cheap ones at the end 0.0000001 cent for 1 btc... which I thought was insane but its not...
  35. Re: [RESOLVED] Help communicating with web API (bitfinex)

    I have changed to your suggestions which look a lot nicer and clearer (coding wise).
    I had a small issue tho (not on your part) but it "lags" when sending the request through http... would it be...
  36. Replies
    18
    Views
    2,528

    Re: Expose methods in dll

    You have to declare the dll file in vb and you need to know the function(s) name(s) and arguments to declare it properly. What is the dll and what are the function names amd what are they suppose to...
  37. Re: VB Program wont open when selected as default for a format

    Usually you set the registry keys to the appropriate extension (.mp4 in the case) to open with your app.
  38. Re: how to use CreateObject and catch events ?

    I know this is an old thread but there is a control for this. VBControlExtender..

    Small Example


    Private WithEvents RichTextBox1 As VBControlExtender

    Private Sub Command1_Click()
    ...
  39. Re: How to check (user clicked) OR (opened at startup) ?

    Did you check the string?

    MsgBox Command
    Does it always return empty?
  40. Re: [RESOLVED] Help communicating with web API (bitfinex)

    Ok so I haven't have any time to work on it... except maybe an hour, but I modified a couple little things and added it to my old (GUI) version of my app. This way you can have a look and if anyone...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width