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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: f1car
  • Order by date
  1. f1car

    scrolling textbox

    You guys are the best, thank you very much.
  2. f1car

    scrolling textbox

    If UBound(strMyCurrentText) = 100 Then Text1.Text = Trim$(Right$(Text1.Text, Len(Text1.Text) - Len(strMyCurrentText(0)))) End If" This is the way that I'm currently manipulating my textbox. I was hoping for a prebuilt-in (c++) function already in richtextbox or someother OCX...
  3. f1car

    scrolling textbox

    Let me rephrase the qualifications. I have a textbox it contain 1000 lines for i/o communications. Over the run lifetime of the text box probably 1,000,000's of lines of text will be sent to the textbox. Currently if I set maxlines to 1000 then the textbox with either a)crash at line 1001 or...
  4. f1car

    scrolling textbox

    I want to make a scrolling textbox like in dos that has buffered capabilities. The purpose of this box is for i/o communications and so if I decide to set the number of lines to ~1000, I want the first line to just scroll off, this way I still have the last 1000 lines to view, but I'm limiting...
  5. f1car

    VB with Macros - Excel

    php3390, I'm not sure if I understand your question, but the way I'm reading it is this. You're trying to use older examples of some macros and now they don't work because you can't pull the drop down list of "Sheet1". I had a simular problem adding a vb script to someone else excel because...
  6. f1car

    Outlook MSG file data question

    Meric1, Thank you Sir!
  7. f1car

    Outlook MSG file data question

    Hi all, I have a folder of 1000's of outlook .MSG files and I need to continually search through them as a cheap DB of sorts, for new ones are added and removed. Does anyone know how to open a .MSG file and read through it? I thought it would be a simple ASCII TAG file of sorts, but I wrong...
  8. f1car

    distributing my VB to others

    Thanks guys!
  9. f1car

    distributing my VB to others

    I've installed a extra control into my program and now I complile the program to an .exe file. It runs fine on the machine that I wrote the program on, but it fails to run when I pass the program on to others i.e. program1.exe I think the control needs a .dll to go with it (from the extra...
  10. f1car

    Textbox and the insert key

    Hello, Everytime I start my VB program and wish to type into a textbox the insertkey is always set to on. I want to use the getfocus in textbox privates sub to set this to off, so I don't have to rely on the user to press this key manually. How do I do this?
  11. f1car

    form on top

    No I didn'tget it worked out. I'll just link a C++ form in instead
  12. f1car

    form on top

    is there a way to keep a form always on top of another program?
  13. f1car

    how to link in vb5 help files into vb6?

    Hi, I have heard that most people like to use vb5 help (vb5.hlp?) files better than vb6 help (vb6.hlp?) files. How do you exchange one help file for the other? Of course this assumes that you have both versons of vb and I do. I especially want to use the f1 key in vb6 to bring up vb5 help...
  14. f1car

    msdn library discs for visual studio 6.0, lost!

    Help, I've lost my library discs for visual studio "enterprise" and I'm trying to install the total softwaqre on my new computer. I've been all through microsoft's MSDN web pages but can't find where to order the replacement discs from, I do remember seeing this issue on this forum...
  15. f1car

    help lost msdn library disks!

    i've beatup ms's web site as well as msdn's. i can't find these things any where. i think the're about 800 meg thoug, that would be one heck of a down load. can i reorder the disks?
  16. f1car

    help lost msdn library disks!

    hi guys, i just moved and lost my visual studio 6.0 msdn library disks! how can i go about getting another set of disk?
  17. f1car

    Help I wrote a program with some .ocx but when compiled my user can't

    How do I use this wizard? I can't find a way to incorporate a .ocx or .dll to distribute? This is very frustrating!
  18. f1car

    How much faster is c++ than vb?

    10%?
  19. f1car

    vb code to delete blank lines in text file

    open &quot;x&quot; for input as #1 open &quot;y&quot; fpr output as #2 Do until eof(1) line input #1, var1$ var2$ = ltrim$(var1$) if len(var2$) <> &quot;&quot; then print #2, var1$ end if loop
  20. f1car

    Upper limit of a textbox?

    32k is correct but I think this is an old &quot;d group&quot; throw back, I know back in the 16 bit days you could fit 2 ascii chr$ into one byte so 32k x 2 seems like 64k in chr$?

Part and Inventory Search

Back
Top