try to look at Janus Controls www.janusys.com let me know if this help
ValentinR
Posts
-
Timeline : how to create in C# -
monitoring file systemthanks Dominik i found this application and I look at it before posting the request the problem with that ona is that i receive a lot of events on file system wich is not needed where can i find some explanation about 'request' column from the GUI ListView? i only need some events of create file, delete file, modify file not such like: FSCTL_IS_VOLUME_MOUNTED thanks in advance for your help
-
monitoring file systemhi there does anyone know how can i log the activity of the file system? i need to know when a file opens and store the name in a database thank in advance for your help
-
New line in TextBoxthank you for your answer, trones i solve the problem this way: char cr=(char)13; char lf=(char)10; string strCR,strLF,strCRLF; strCR=cr.ToString(); strLF=lf.ToString(); strCRLF=strCR+strLF; art=art.Replace(strLF,strCRLF); textBox1.Text=art;
-
New line in TextBoxhi there i have a problem using a text box i have a text multiline box (accepts return = true) and TextBox1.Text=varText. varText is a text with many lines (in fact is an XML source indented) if i show the text with MessageBox.Show(TextBox1.Text) it looks fine but in the edit box instead of 'new line' i have '|' what can i do? any idea? thanks in advance for your help
-
Listview and Treeviewhi there i need some ideas about putting treeview controls inside listview more specific i need to have a treeview in each listview item or subitem i found an article about treelistview but this implement subitems facility for treeview item and is not usefull for me thanks in advance for your help
-
write to Parallel portlook in MSDN for CreateFile API function