Search:

Type: Posts; User: RhinoBull

Page 1 of 13 1 2 3 4

Search: Search took 0.30 seconds; generated 33 minute(s) ago.

  1. Re: Poll 004 Results: What OS is on your primary mobile phone?

    Let's face the reality:
    - most of iOS users will stay with it for years to come - it's truly best mobile OS currently available whether you like or not
    - WP has very limited users base and if Nokia...
  2. Re: Poll 004 Results: What OS is on your primary mobile phone?

    This poll has no value at all imho. I also wonder where in the world did you get that 13% from?
    For more accurate web analytics go to NetMarketShare or perhaps StatCounter. Here is mobile OS share...
  3. Re: Editing records connected to ms access in vb6

    If you are using datagrid why do you need an "edit" form? Edit forms are typically used over non-editable grids/etc...

    Regardless, if it's a "requirement" then datagrid is bound to a recordset -...
  4. Replies
    2
    Views
    756

    Re: Database Connection

    Try using Connection.State property:


    If cnn1.State = 1 Then
    'connection is open
    Else
    'didn't open - you will probably get an error from ado
    End If
  5. Replies
    5
    Views
    963

    Re: Vb 6.0 end a for loop?

    Can you show us your code?
  6. Replies
    115
    Views
    15,860

    Re: Forum Template / Layout Change

    Ads between the posts will probably be better - one reason is when you click "go to last post" link and if thread is lengthy you may need to scroll it all up to close the right rail.
    That's going to...
  7. Replies
    16
    Views
    9,611

    Re: Too many ads getting displayed on Chrome.

    I get big overlay add every time I navigate to a new page. I quit browsing forum this morning after seeing 4 or maybe 5 of them...
    I am now getting the same thing... Super annoying. What's changed?
  8. Replies
    115
    Views
    15,860

    Re: Forum Template / Layout Change

    Not sure what's your most recent job got to with this thread and you did not answer my question.
    Also not everyone can afford giant monitors. Lots of people still use standard def (3x4) monitors.
  9. Replies
    115
    Views
    15,860

    Re: Forum Template / Layout Change

    Are you affiliated with developer.com? Because you keep mentioning aup so frequently... ;)
  10. Replies
    115
    Views
    15,860

    Re: Forum Template / Layout Change

    I think we are asking the same question:
  11. Replies
    115
    Views
    15,860

    Re: Forum Template / Layout Change

    Can you at least make viewing right panel optional?
  12. Replies
    115
    Views
    15,860

    Re: Forum Template / Layout Change

    Not sure I agree with getting used to because I won't but that's besides the point.
    VBF is no longer UNIQUE and this will drive people away. You guys have to realize that as well.
  13. Replies
    115
    Views
    15,860

    Re: Forum Template / Layout Change

    Awful! Awful! Awful!

    I had few colleagues of mine asking what's wrong with vbf because I was who recommended in the past.
    I tried to be positive and my respond was "new look, the same content"...
  14. Replies
    115
    Views
    15,860

    Re: Forum Template / Layout Change

    Why even bother if you know it yourself. You know it's bad so why did you do it? You know there is a lot of wasted real estate... You know it's bad on mobile devices...
    This is exactly the reason I...
  15. Replies
    10
    Views
    1,302

    Re: Yet another giant ad

    Me too. :)
  16. Replies
    11
    Views
    1,604

    Re: Text Bold in VB

    I guess this could be the answer, TG.
  17. Replies
    11
    Views
    1,604

    Re: Text Bold in VB

    Yep, the subject line. The only client I have seen that do this kind of formatting is browser based.
  18. Replies
    10
    Views
    1,302

    Yet another giant ad

    110831
  19. Re: Issue with posting code using [CODE] tags

    Sorry for late respond...

    Yes, Chrome is fine as well as IE9. IE10 appears to be the issue and there are no add-ins running - I don't usually allow any.
  20. Replies
    11
    Views
    1,604

    Re: Text Bold in VB

    I might be wrong but I think bold subject text depends on email client and not the sender.
  21. Re: Issue with posting code using [CODE] tags

    Does anyone have any clue?
  22. Replies
    8
    Views
    1,123

    Re: Saving your work in progress

    I thought I already mentioned it but in fewer words in post #4:
  23. Re: Issue with posting code using [CODE] tags

    Strange, in Chrome it appears fine but not in IE 10:
    110717
  24. Replies
    8
    Views
    1,123

    Re: Saving your work in progress

    You can use SourceSafe if you have it installed or any alternatives like SVN, etc...
    So, basically you need any file repository system that offers version control.

    If it's not an option then...
  25. Replies
    8
    Views
    1,123

    Re: Saving your work in progress

    Sure there is : CTRL + S; keep hitting it every so often. :) I do...
  26. Replies
    4
    Views
    889

    Re: runtime error 6

    @Phil:

    please use [code] tags instead of <code>. Thanks.
  27. Replies
    4
    Views
    866

    Re: Navigating the Form

    If you are asking about navigating your code in the code window then:

    code window has two dropdown boxes:
    - one on the left (list of all objects added to the form and form itself;
    - and one on...
  28. Issue with posting code using [CODE] tags

    I just noticed that empty lines are being eliminated which causes code to loose its readability.
    As it appears to me if any "empty" line has any number of spaces or tab character then it will be...
  29. Replies
    4
    Views
    669

    Re: changing the last 2 digits to 0

    There are probably gazzilion ways of doing - here is just one of them:


    Private Sub Command1_Click()
    Dim number As Long
    Dim result As Long

    number = 1999
    result =...
  30. Replies
    6
    Views
    3,602

    Re: Ball Bouncing off walls

    Have a look at these and compare to how you did it:
    http://www.vbforums.com/showthread.php?369390-VB6-Pong-game-source...
  31. Replies
    4
    Views
    866

    Re: Navigating the Form

    Exactly what do you mean?
  32. Re: Application-defined or Object-defined error issue

    Unfortunately it's not always true. In the past I encountered problem with ADODB objects when application would not close because at least one of ado objects remained in memory.
    I traced it back to...
  33. Replies
    36
    Views
    4,217

    Re: how to search a ListBox

    Look at my sample code here. Just substitute Combo1 with List1 and use FINDSTRING constant instead.
  34. Replies
    19
    Views
    2,026

    Re: Help with codes!

    I always try avoiding using any in-line functions because they could be "dangerous" to use and here is why:

    all arguments must be evaluated first and if any of them generate unhandled runtime...
  35. Re: [RESOLVED] Invalid Property Value: DTPicker

    First please stop calling me "sir". Thanks.

    Back to your question...

    You coded DTPicker2_CallbackKeyDown event procedure - how it gets triggered is highly questionable however, when it does (or...
  36. Replies
    19
    Views
    2,026

    Re: Help with codes!

    There are few problems with your code:

    1. Label1.Caption.Value is not a valid syntax; correct syntax is:
    Units = Val(Label1.Caption) or Units = CInt(Label1.Caption) or Units =...
  37. Replies
    18
    Views
    1,872

    Re: A Virus! Highly Infectious Disease

    There is one thing you need to understand: everyone is a volunteer and post their answer on their own time.
    You cannot rush anyone even if you only have 10 minutes left... If you're (as you said)...
  38. Re: Invalid Property Value: DTPicker

    Don't you have to assign CallbackDate value to txtRelease instead of Date which always returns current date?
  39. Re: Invalid Property Value: DTPicker

    If possible... please remove those line numbering from posted code - simply use CODE tags instead.
    Also, use indentations for better readability. See sample code below.

    Thanks.



    Private Sub...
  40. Re: Run-time Error 3021, No Current Record, query string question.

    I didn't think that extra space(s) could be an issue in this context - never encountered one.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width