Search:

Type: Posts; User: AccessShell

Page 1 of 13 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    304

    Re: WIN 10 COntrol Panel

    Drilling down is just like on a directory.
    Control Panel/system....

    I have no specific project in mind. I just to learn.
  2. Replies
    4
    Views
    304

    WIN 10 COntrol Panel

    Is it possible to access the WIN10 control panel and drill down using VB6?
  3. Replies
    3
    Views
    382

    Re: Interpreting some Data

    Thanks, VanGoghGaming, That's exactly what I needed. I have pick out the character and strip out all the other stuff.
  4. Replies
    3
    Views
    382

    [RESOLVED] Interpreting some Data

    I have a field I got off the internet. I used the following code of it

    For i = 1 To Len(strOP) y = Mid(strOP, i, 1)
    Debug.Print "i = " & i & " , y = " & y
    Next i

    ...
  5. Re: richTextBox selecting & highlighting

    Sam, I did essentially what you said and it works just fine.
  6. Re: richTextBox selecting & highlighting

    Thank you VanGoghGaming. But I need to stick with the original RTB.

    The control has the ability to change the color of the line. I know the line length (59), and I know the line number.
    so ...
  7. Re: richTextBox selecting & highlighting

    I can live with making the line bold, or change the forecolor for the line.

    Implementing Krool's VBCCR package package is beyond me.

    I will figure out how to select the even numbered lines...
  8. Re: richTextBox selecting & highlighting

    So now I can select some text. me.rtb.seltest = some data. I can also unselect some text. me.rtb.seltext = "".
    I tried to set the selected text to font bold. (I really need a backcolor highlight -...
  9. Re: richTextBox selecting & highlighting

    I have read some. Probably not read enough.
  10. [RESOLVED] richTextBox selecting & highlighting

    I have an RTB which I load from a database. The data contains several columns of data per line.

    I think I can select every other line (the mod function). But once have the selected data, I need...
  11. Replies
    7
    Views
    1,011

    Re: [RESOLVED] Form Height vs Max VScroll

    I did exactly what ahenry suggested. It was much easier than using a VScroll bar. And, of course, no frustration.

    Thanks - thread is finally closed
  12. Replies
    7
    Views
    1,011

    Re: [RESOLVED] Form Height vs Max VScroll

    Dry Bone as much as I try to understand you , I cannot.

    Here is what I Have.

    On my form I have a frame named fraScroll.
    On this frame I have 50 mini-frames called fraSQ(i), indexed 1 to 50....
  13. Replies
    7
    Views
    1,011

    Re: [RESOLVED] Form Height vs Max VScroll

    On further analysis, the suggestion does not fully work. While I can now scroll the entire height of the data, I cannot:

    1. Get the VScroll.Value = 0 with the data at the top of the scroll...
  14. Replies
    7
    Views
    1,011

    Re: Form Height vs Max VScroll

    Thank you Dry Bone. I did suggestions 1 and 3. After some playing, I got it to work properly. I am now trying to get the tab on the VScroll bar to start at the top.
  15. Replies
    7
    Views
    1,011

    [RESOLVED] Form Height vs Max VScroll

    It seems I can make a form height much greater than about 32000. My current form height is about 60000.
    It seems I can make a Frame height much greater than about 32000. My current form height is...
  16. Replies
    9
    Views
    1,036

    Re: Image control shape

    I found a very low tech, simple solution.

    All the pictures are round. The image control is square, or rectangular. The area between the circle and square is of concern. BUT, for all the...
  17. Replies
    9
    Views
    1,036

    Re: Image control shape

    The picture is about rectangular, very close to square. But the important part is round. The extra space in the corners would take a lot of work to change the color properly.

    I want to get rid...
  18. Replies
    9
    Views
    1,036

    [RESOLVED] Image control shape

    Is it possible to make this control round?

    Thanks
  19. Replies
    2
    Views
    581

    Re: Option buttons issue

    Worked great. Thanks.

    You're suggestion triggered something. When I created the opt buttons, that was the first button I created,
  20. Replies
    2
    Views
    581

    [RESOLVED] Option buttons issue

    I have a form (call it Form2). This form is called by form1

    In form 2, i have several option buttons. All opt buttons are set to false, This has been verified by a debug.print statement in the...
  21. Replies
    7
    Views
    888

    Re: Array Manipulation

    So, I evaluated Sam's recommendation. i.e., using a database.

    It is much easier to sort, combine like entries, etc.

    I guess I didn't want to use a DB originally.

    I can do all the...
  22. Replies
    7
    Views
    888

    Re: Array Manipulation

    Sometimes I write programs that need no form. Like the pre desktop batch programs on mainframe computers.

    I never thought about using a DB. Sounds simple and intriguing.

    I'll evaluate.
    ...
  23. Replies
    7
    Views
    888

    Re: Array Manipulation

    Nice. I think you need more data



    Type DataIndex
    DataValue As Single
    Quantity As Integer
    End Type
    Global gData() As DataIndex
  24. Replies
    7
    Views
    888

    [RESOLVED] Array Manipulation

    VB6 on Win10
    No form

    I have a sorted array with only 2 fields and currently only 400 entries. The number of entries will increase by only 1 per day. But, I may not run the program daily, in...
  25. Replies
    14
    Views
    1,167

    Re: Getting errors with the following code

    I write for code to learn and have fun. I, usually, have more fun writing the code. than running the exe.

    That said, I wrote the original program to learn about bitblt. I learned a lot. Mostly,...
  26. Replies
    14
    Views
    1,167

    Re: Getting errors with the following code

    You are right. You call it a simulation, I call it a demo. while this is going on, I am using bitblt to move pictures around. The movement is not easy to follow unless you can see the cursor in...
  27. Replies
    14
    Views
    1,167

    Re: Getting errors with the following code

    With all these API calls, I am getting more and more confused.

    Let me explain, in much more detail, what I am trying to do.

    My previous description was shorter because I thought I could do...
  28. Replies
    14
    Views
    1,167

    Re: Getting errors with the following code

    Not exactly.

    I will give the MD location and the MU location from an array. I want the cursor change at simulated MD and simulated MU.

    And, of course, no highjacking.....
  29. Replies
    14
    Views
    1,167

    Re: Getting errors with the following code

    Sam, I can do what you have shown in your code.

    What I can't do, is that with a simulated left mouse click down and a simulated left mouse click up.
  30. Replies
    14
    Views
    1,167

    Re: Getting errors with the following code

    I can eliminate errors 1 & 2 above just by declaring the variables. However, the shown code does not say what values should be used!
  31. Replies
    14
    Views
    1,167

    Getting errors with the following code

    I have tried to use the following code from another post in this forum




    'Before you start this program, I suggest you save everything that wasn't saved yet.
    Private Declare Sub mouse_event...
  32. Thread: MouseMove

    by AccessShell
    Replies
    15
    Views
    1,110

    Re: MouseMove

    I just realized something. Normally, in a MouseDown, MouseMove, and MouseUP scenario, the routine is called Private Sub Picture1_MouseDown(..........), similarly for MM and MD.

    However, here ...
  33. Thread: MouseMove

    by AccessShell
    Replies
    15
    Views
    1,110

    Re: MouseMove

    I do have an array. BUT, the array is of the positions on the board. I can make a round checker appear on the form using bitblt.

    I am just trying to write the MouseMove event. All the logic I...
  34. Thread: MouseMove

    by AccessShell
    Replies
    15
    Views
    1,110

    Re: MouseMove

    I think that you are all saying, is that I need either a round picbox or a round form, so that when I drag the checker the square part that is bigger than the circle is transparent. Only the round...
  35. Thread: MouseMove

    by AccessShell
    Replies
    15
    Views
    1,110

    Re: MouseMove

    VGG & Baka, I am investigating.
    Olaf, I have no idea what you are trying to tell me!
  36. Thread: MouseMove

    by AccessShell
    Replies
    15
    Views
    1,110

    MouseMove

    I have a form with checkers on it. The checkers were placed at the appropriate locations at run time using BitBlt. When I do a MouseDown(event) on a checker, the cursor changes to a hand. There is...
  37. Replies
    6
    Views
    919

    Re: Problems on VB6 Compile

    This program is doing none of these things. It is a game. Back in the '50s. I played a game called "Hi-Q". I found some come code and generalized it. I do not read or write to files. I do not...
  38. Replies
    6
    Views
    919

    Re: Problems on VB6 Compile

    The McAfee threat I found was 'Real Protect-LS!2ff5c8933fcd. The internet has a big write-up on it. It seems that the user rating is extremely low.

    In any event, I can easily exclude the file on...
  39. Replies
    6
    Views
    919

    Problems on VB6 Compile

    I do compile cleanly when the code is correct. But, most of my programs get flagged by McAfee, either when I scan after compile, or when I try to run them. This does not happen to all programs. I...
  40. Replies
    2
    Views
    696

    Re: Sending a file

    I changed the name of the file and it got sent ok.

    However, Mcafee, on my friends computer would not allow it be extracted.

    McAfee, on my computer, does not find anything wrong with the...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width