CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Bruin 1953

Page 1 of 2 1 2

Search: Search took 0.07 seconds.

  1. Re: How to add a changing number to a static MSCHart?

    Thanks, but this is not what I have in mind.
    The chart is historical, so data will remain the same throughout the day.
    All I want is to add a tick to indicate the current price.
  2. How to add a changing number to a static MSCHart?

    My line MSCHart shows the prices of a stock over time up to yesterday.
    As the stock is traded today, I like to show the new price on the chart, perhaps as a straight green/red line across the plot,...
  3. Replies
    3
    Views
    1,525

    Re: I want Forms1 maximized on top!

    Thank for kind reply
    I always exit IDE with Form1 maximized, and always get the other guy (a module) on top. However, I made sure that module occupies only part of the space, so a click brings Form1...
  4. Replies
    3
    Views
    1,525

    I want Forms1 maximized on top!

    Let's say that a new Project1 has two forms and a module.
    Since 90% of coding involves Form1, you want it loaded as maximized on top (instead of manually bringing it to front each time).

    The...
  5. Re: Is it possible for MS Word to apply pasted HTML tags?

    Please show me how Word can save and read HTML. I couldn't locate HTML in "Save As" list.
    Thanks for attention.
  6. Re: Is it possible for MS Word to apply pasted HTML tags?

    Saving is no problem. The reverse, ie reading text with HTML, is.
    Thanks.
  7. Re: Is it possible for MS Word to apply pasted HTML tags?

    A. I thought a VBA macro might be needed
    B. Of course, I am asking because I couldn't solve it myself.
    Thanks.
  8. Is it possible for MS Word to apply pasted HTML tags?

    Suppose you paste this line to Word 2003:
    <b>ABC</b>
    Is it possible that word will make ABC bold and delete the two tags?
    AYK, many forum editors do exactly that.
    Appreciate any help.
  9. Replies
    1
    Views
    665

    Is there a better VAL()?

    As you know, Val() stops at commas, parentheses, etc, but ignores spaces between separate numbers!
    CDBL(strTxt) offers help, but only if the string is fully numeric

    I often write code to process...
  10. Replies
    7
    Views
    12,283

    Re: Please: How to copy text from webpage?

    You are probably right!
    I thought I tried it and it worked, but I am finding out that this code return HTML in the page, not the textual data itself.
    So, my request is on!
  11. Replies
    7
    Views
    12,283

    Re: Please: How to copy text from webpage?

    Great! Thanks
  12. Replies
    7
    Views
    12,283

    Please: How to copy text from webpage?

    Pls show me How to copy text from any given webpage to thee ClipBoard.
    I now open the page manually and SelectAll - Copy data from File menu, but would like my program to do the copyin
    Saving ...
  13. Replies
    2
    Views
    1,223

    Re: MP3 properties

    Thanks for the reply!

    I now know that there are two ID3 versions:
    v1 at the end of the file (128 bytes)
    v2 at the beginning of the file (up to 256MB!)
    Obviously, v1 tags are fixed-length, while...
  14. Replies
    2
    Views
    1,223

    MP3 properties

    I have 1000's of MP3 files whose properties (title, artist, etc) need standardization.
    The files are stored in different folders according to genre, and the file name reflects the name of piece and...
  15. Replies
    9
    Views
    1,585

    Re: Easy String Delete / Insert

    Thank you for the suggestions

    I pasted the code with spacing, but it was lost at posting. I am new to the site and will try to use the blue code box

    Error example:
    textA="ABC" :...
  16. Replies
    9
    Views
    1,585

    Easy String Delete / Insert

    ****************** Dedicated To WoF! *********************

    String editing in VB is a drag! It involves a mixture of Left, Mid, Right, and Len functions. Errors will creep in if calculations of...
  17. Replies
    3
    Views
    780

    Re: StatusBar in Form, but none in code!

    Thanks! That's it!
    NUM, CAPS, Date, etc. don't need any programming.
  18. Replies
    2
    Views
    641

    Why controls are fixed?

    On a form I downloaded, all controls are fixed. They can be moved and resized only programmatically. I couln't locate the property that is responsible for this.

    Any help!
  19. Replies
    2
    Views
    922

    A Problem with SendKeys

    Please add the following to the KeyUp (or KeyDown) event of Text1
    Place cursor at the beginning of a word and press F-12. The word will be selected, as expected.

    If you break execution manually...
  20. Replies
    11
    Views
    9,600

    Re: Easy MsgBox!

    Even better!
    Thanks WoF!
  21. Replies
    11
    Views
    9,600

    Re: Easy MsgBox!

    Thanks for the simplification!

    On second thought, I think dividers should stay, and changed to something like " | ", to show which parameters are missing.

    So, here is the latest V:


    ' Easy...
  22. Replies
    3
    Views
    780

    StatusBar in Form, but none in code!

    I am trying to modify a public-domain NotePad to suit my needs.

    FormMain has a StatusBar (named StatusBar1). It's is working fine (Date, NUM, etc), but I like to post something else to it.
    ...
  23. Replies
    11
    Views
    9,600

    Re: Easy MsgBox!

    I found a simpler code.
    Let Errors do the job!



    ' Easy MsgBox (up to four items of any type)
    Sub mb(A As Variant, Optional B As Variant = "", Optional C As Variant = "", Optional D As...
  24. Replies
    6
    Views
    1,466

    Re: Is there a list of all vbConstants?

    Thanks for the help, but I have not located the complete list>

    I know about the Object Browser, but I want to ? the list
  25. Replies
    11
    Views
    9,600

    Easy MsgBox!

    I use MsgBox a lot in development to make sure that variables have the proper values before proceeding further.

    I wrote the following Sub to display up to 4 variables, and take care of bothersome...
Results 1 to 25 of 33
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured