Search:

Type: Posts; User: Luceee_Qiller

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Re: How to display lines in column next to richtextbox?

    Thank you so much for your help with this Peter! I had actually abandoned the idea of using a coding style RTB in favour of a plain RTB as I could not get it to work. Using this makes my application...
  2. Re: How to display lines in column next to richtextbox?

    Thanks Pete,

    This code works brilliantly!!

    However, sadly the main issue still remains. Does anybody possibly know of a solution to this?

    Thanks for the help!
  3. Re: How to display lines in column next to richtextbox?

    This actually looks really useful. That's probably another question that I might have had in the future resolved. Thanks for your help!
  4. Re: How to display lines in column next to richtextbox?

    Thanks for your help Niya :)

    I've tried looking into a few controls that looked promising, even diving into the realm of C#. However, none of them worked very well.

    The closest I've got to a...
  5. Re: How to display lines in column next to richtextbox?

    Thanks for your reply :)

    Yeah, I need a code editor control that has the line number column and that can take plaintext as well. Also needs to be flexible just like a RichTextBox is because I'd...
  6. [RESOLVED] How to display lines in column next to richtextbox?

    Hello,

    Is there any way to display the number of lines that are in a richtextbox (including empty lines), like so:

    154559

    I can't find any fully functional controls online, does anyone have...
  7. Re: Make a TabControl Transparent

    Really sorry! It's solved now - I found a way to resize the toolbar. For anyone else stuck with this in the future ,just turn dock off and resize it using the 'size' value in the properties.

    Sorry.
  8. [RESOLVED] Make a TabControl Transparent

    Hello,

    I have on my form a ToolBar and a TabControl. The ToolBar buttons are aligned to the left, while the TabControl are going RightToLeft. I'd like it so that the TabControl is sat next to the...
  9. Re: Adding Image to ToolBar Button?

    Ah, seems so obvious now, all fixed, thanks!
  10. Re: Adding Image to ToolBar Button?

    Okay, I didn't know you had to search for the Index in the properties. I did it, made sure that the Index value corresponded with the Index of the ImageList. I've done it correctly, this is the...
  11. [RESOLVED] Adding Image to ToolBar Button?

    Hello,

    Firstly, just to clarify, I am using the ToolBar, not the newer ToolStrip. For those who don't know you can add the ToolBar to your form by right clicking on the toolbox and selecting...
  12. Re: Where do companies get their buttons from (low-res)

    Thanks everyone for your help!

    I managed to find an .ISO of Visual Studio 6.0 (from 1998) and it had the right style of icon library that I needed. Thanks everyone for your help though!
  13. Re: Where do companies get their buttons from (low-res)

    Thanks Shaggy, that's what I'm looking for.
  14. Re: Where do companies get their buttons from (low-res)

    Thanks for your replies everybody.

    That image library will definitle be helpful in other projects. But I'm downloading Visual Studio 6.0 (from 1998), hoping to get this style of button:
    154457
    ...
  15. [RESOLVED] Where do companies get their buttons from (low-res)

    Hello,

    I understand that Visual Studio (2010 and onwards) provides standardized graphics libraries for save, open file, close file, search, etc. Are there any that are more low-resolution (early...
  16. Re: Resizing form during runtime?

    Wow, clever (to me it is anyway).

    Hopefully I'll be able to think of the same sort of solutions one day, I'll try to implement the same sort of thing with other aspects of my project.

    Thanks...
  17. [RESOLVED] Resizing form during runtime?

    Hello,

    I have a small issue. I have a button on my form. On Button_Click event, the form must resize itself to a certain height, this is the code I currently have:


    If Me.Size = New...
  18. Re: How to open process in minimized state?

    That's literally a perfect solution, however I don't know any Java and I'd only know how to decompile it. I wouldn't know how to edit it and then recompile it with a "main" class or whatever. I've...
  19. Re: How to open process in minimized state?

    It makes sense, however that's definitely not the problem unfortunately :(

    Just a simple solution that I thought of, however I haven't learned how to do this yet, and I'm sure you (or anybody...
  20. Re: How to open process in minimized state?

    Hey,

    I'm trying to start a .jar file.

    Thanks.
  21. Re: How to open process in minimized state?

    Thanks for the reply,

    However, using this code disables the application from even being set as child (for some reason). Also, it doesn't start in a min/hidden state.

    Thanks though :)
  22. How to open process in minimized state?

    Hello,

    I'm opening a process in my project to be set as a child window. Currently a timer is dictating when the process should be set (which is fine), however, because the tick interval is quite...
  23. Referring to a run-time generated object?

    Hi all, I have a button on my form which can generate an unlimited number of panels.


    Dim pnl As New Panel With {.BorderStyle = BorderStyle.FixedSingle, .BackColor = Color.Gainsboro, .Tag = p}
    ...
  24. Re: Set child based on program name or description?

    resolved
  25. Re: Set child based on program name or description?

    Nevermind about that question, I've kind of resolvd it. A more basic question:

    I'm creating panels during runtime, they're not in my designer:

    Me.Controls.Add(pnl)

    How would I create a...
  26. Re: Set child based on program name or description?

    I know how to do it via handles, but I need to be a able to do it with 'Program Name' (please note, that this is for a very good reason). Any way at all to replace:
    p1 =...
  27. [RESOLVED] Set child based on program name or description?

    Hello,

    Is it possible to set a process as child to a panel based on the process's 'Program Name'?
    I understand how to do it based on the process name, however I must be able to do it based on...
  28. Re: Complex issue - setting multple of the same processes into different panels

    Thanks for your reply, but unfortunately the intervals that the timers are set at is not the issue, even at an interval of 1000 still produces the problem. The windows that I'm opening are incredibly...
  29. Re: Complex issue - setting multple of the same processes into different panels

    Bump &...

    It's so inconsistent - sometimes it sets the application as a child othertimes it does not...

    The first one tends to set as child to the panel1 every single time, however the second...
  30. Re: Complex issue - setting multple of the same processes into different panels

    Bump
  31. Complex issue - setting multple of the same processes into different panels

    Hi all,

    I have 10 panels (panel1, panel3, panel5, panel7... panel19) These panels are arranged on a form in the exact same location, of the exact same size (on-top of one another, all originally...
  32. Re: Keep focus on parent when interacting with child (and vice versa)?

    Thank you for the reply. I'm simply trying to set an external application as child within my form, however I want it to act as though it is part of my form (that's why the focusing of the parent form...
  33. Re: Keep focus on parent when interacting with child (and vice versa)?

    Thanks a lot for your reply. I now know that I only need my parent form to be in focus. Is there a way to make it so that the parent form remains in focus even when trying to click in child.
    ...
  34. Re: Keep focus on parent when interacting with child (and vice versa)?

    Hi :)

    Thanks for replying, but I'm afraid this is not what I'm after. When the child is in the form and the user clicks inside of the child, this happens:

    153785

    Do you see how my...
  35. Re: Keep focus on parent when interacting with child (and vice versa)?

    Bump

    I'm becoming depressed over how annoying this issue is. :cry:

    Please help me :(
  36. Replies
    4
    Views
    1,030

    Re: Custom Marquee ProgressBar?

    Oh neat,

    That'll allow me a lot more flexibility if I want to change the location of the pictureboxes.

    Thanks for your help!
  37. Replies
    4
    Views
    1,030

    Re: Custom Marquee ProgressBar?

    Awesome!

    Seems so obvious now!!
    Thanks for not giving me the code, I'm a beginner and it was rewarding programming it myself :)

    Those who learn better from the source, or just need a quick...
  38. Keep focus on parent when interacting with child (and vice versa)?

    Hi all,

    I'm trying to maintain focus on the parent and the child at the same time when interacting (clicking) on either one. Just to clarify, this is not a multi-document interface, and uses this...
  39. Replies
    4
    Views
    1,030

    Custom Marquee ProgressBar?

    Hi all,

    I've managed to create custom block progressbars before in other projects:

    Private Sub ProgressTimer1_Tick(sender As Object, e As EventArgs) Handles ProgressTimer1.Tick

    ...
  40. Re: How to open a program in a hidden state?

    Finally resolved!! :)
Results 1 to 40 of 53
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width