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

    When I try to dra on top of an existing shape...it wont appear..

    I am trying to draw shape A and then erase or clear the shape and then when the mouse is clicked on top of shape A shape b will appear, I have used region, and when i press on shape A, shape B doesnt appear, but when i use the breakpoint the compiler is drawing shape B but then on the screen it...
  2. iara

    How do you use the region class for hit testing?..

    thanks for the reply, I have tried this, but I just get no change of state. I tried to change the color of the brush while the mouse points at the ellipse but nothing happens. It does not read to mouse click. Im just wondering should there be some other way to do this? regards.
  3. iara

    How do you use the region class for hit testing?..

    I have a shape Example : ellipse and would like to perform hit testing on it so when the mouse passes over this ellipse on the screen some other drawings wil appear.. I have been trying to find some help on the internet and I have not found any, does anyone know of some site to do this? I did...
  4. iara

    How do I draw on the cliet size of a control?... example picture box.

    Hi, I am working on a drawing application now, I do not want to draw on the whole form because I have other controls there , I would like to draw inside a componen such as a Group box or a picture box, How can I achieve this? Thanks;
  5. iara

    How to access to components from MDI parent to Mdi child forms..

    How can I acces to controls from form A to form B. Form a is the container parent form, and I would like to access to the richtextbox of form b which is the child form. thanks in advance
  6. iara

    MDI forms...

    My MDI child windows when invoked by the menu of the parent MDI dont show any controls such as an richtextbox. How do I make the main form acces all MDI forms? If anyone has a suggestion thanks,
  7. iara

    can u link a console application with a windows application in C#

    HI,' does anyone know if i could link a console application with a windows applications? thanks
  8. iara

    can anione advice me on how to keep the properties of an .rtf file.

    I have a text and am manipulating it, but i want to keep the .rtf properties is this possible? Does someone know ? thanks,
  9. iara

    How can I keep the propertoes of a .rtf line

    This is my code { //READ A LINE String scfile=dlgOpen.FileName; StreamReader srReadline=new StreamReader ((System.IO.Stream )File.OpenRead(scfile),System.Text.Encoding.ASCII ); srReadline.BaseStream.Seek (0,SeekOrigin.Begin ); while(srReadline.Peek () > -1) rtb_try.Rtf...
  10. iara

    Can anyone suggest the best procedure to...

    Thanks it was a great help.Now I am trying to just a line from the file to a richtextbox, I guess the properties of the .rtf file are not kept. { //READ A LINE String scfile=dlgOpen.FileName; StreamReader srReadline=new StreamReader ((System.IO.Stream...
  11. iara

    How can I keep the propertoes of a .rtf line

    Hi, I have read line by line and have search for a particular word using regex, when it has found this word i have sent this line to a function because i want to read this particular line by each character. My question is the file is in .rtf, how can y keep the format of this particular line...
  12. iara

    How to add columns to the ListBox

    Hi, I have read line by line and have search for a particular word using regex, when it has found this word i have sent this line to a function because i want to read this particular line by each character. My question is the file is in .rtf, how can y keep the format of this particular line...
  13. iara

    Separation of a text file

    Hi, I have read a file line by line and have searched for a particular word using regex, when it has found this word i have sent this line to a function because i want to read this particular line by each character. My question is the file is in .rtf, how can y keep the format of this particular...
  14. iara

    Separation of a text file

    Hi, I have read line by line and have search for a particular word using regex, when it has found this word i have sent this line to a function because i want to read this particular line by each character. My question is the file is in .rtf, how can y keep the format of this particular line...
  15. iara

    Can anyone suggest the best procedure to...

    Can anyone suggent me the procedure to reading a file and then writing to an array specific parts of a binary file, or maybe Im thinking of writing it to another file instead of using an array. I know I have to use the System.IO stream classes. Well thanks in advanced.
  16. iara

    C# Book

    Can someone recommend me a good C# Advanced programmers book?.I'm new at it and I want to learn it well.
  17. iara

    Separation of a text file

    Hi, Im quite new at C#, I would like to open a .txt file and read it and then separate the variables. How can I indicate the reader to just read some on the variables and skip others..I mean I want the reader to read word by word, I know I should use streamreader. I also would like to ask what...

Part and Inventory Search

Back
Top