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 strongm 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: tomcoombs
  • Order by date
  1. tomcoombs

    See if Shift is down while loading

    same story :-( ShiftKeyPressed never become true Tom
  2. tomcoombs

    See if Shift is down while loading

    How can it be done? I have tryed using an event (as below) But as its loading the event never fires. I need a function like : bool IsAKeyPress (Keys.Shift) <<<<<<<<<<< MADE UP FUNCTION, anybody know a real one :-) ? Tryed : this.KeyDown += new KeyEventHandler(Form2_KeyDown)...
  3. tomcoombs

    WMmessages to a thread

    I have an old C++ written driver for a board that fires WMmessages off to a selected thread. How can I get these in C#? Tom
  4. tomcoombs

    why VB more popular than C# and Java?

    Its historically easier that C++ etc, with less power. Most companies do not need this extra "power" / flexibility so VB became popular. Rest assured that any programmer gives greater respect to c++ programmers because it harder to learn. (Unless of course they are a VB programmer ? ) Tom
  5. tomcoombs

    get assembley version c#

    Sure is :-) Thanks Again Tom
  6. tomcoombs

    get assembley version c#

    I need to get the assembley version in runtime in c#. One one from the assembly.cs file [assembly: AssemblyVersion("4.3.0.0")] Thanks a million in advance... Tom
  7. tomcoombs

    Call back in Remoting

    How can I tell the client if an event occurs at the sever. Without polling? Tom
  8. tomcoombs

    Add a Drag-drop image?

    Yeah Sorry, should have said. Its windows
  9. tomcoombs

    Add a Drag-drop image?

    How can it be done? Or do I need to trackthe mouse position etc.. (But in that case the &quot;Controls&quot;collection do I add it to??! Thanks Tom
  10. tomcoombs

    Hover Area of a Splitter

    ..not just a property then?
  11. tomcoombs

    Hover Area of a Splitter

    SOS :-)
  12. tomcoombs

    Hover Area of a Splitter

    You know in windows, the size of a header splitter in a table (listview) is smaller than the area where the icon actally changes to a splitter cursor. A 1 pixel wide splitter is the LOOK I want, but is so hard to use..... How can I do that with a c# splitter? Thanks in advance Tom
  13. tomcoombs

    Changing the look of the titlebar...

    Thanks SHelton, I compleated that part a while ago using exactly the same technique on that page. Thanks Again Tom
  14. tomcoombs

    finding the viewed area of a panel

    Ie) when autoscroll has scrolled. Any ideas? Tom
  15. tomcoombs

    How to get string width in pixels, given the Font Object

    Image offScreenBmp; offScreenBmp = new Bitmap(100, 900); gdiSurface = Graphics.FromImage(offScreenBmp); theFont = myFont; public String TruncateByWidth(string myString, int EndWidth) { int count = 1; SizeF MeasuredWidth = new SizeF(); while(MeasuredWidth.Width <...
  16. tomcoombs

    Changing the look of the titlebar...

    not possible? come on guys what are your inital thoughts? Tom
  17. tomcoombs

    Changing the look of the titlebar...

    I want to draw a custom title bar, is it possible as belive that part is controled by windows? Could I just not display it some how and do my own look-a-like one. (I could do bordertype = none, but then you loose window resizing :-( ) Any body know how to get rid of the titlebar OR change its...
  18. tomcoombs

    override splitter constraints c#

    Its always the simply solutions that are the best, now works fine. Nice One. Happy New Year. Tom
  19. tomcoombs

    override splitter constraints c#

    is it a property or something? Tom
  20. tomcoombs

    how do I change the font color in code-behind?

    Label3.Font = new System.Drawing.Font(&quot;Courier New&quot;, 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));

Part and Inventory Search

Back
Top