Hy! I want to make a application to monitor what sites are loaded by the browsers(IE, Firefox) used on a computer. can anybody help me how can I start? thanks
mihksoft
Posts
-
HTTP request on network -
BackgrounImage refresh problemHy, I made an simple windows form application, and to a MDI form I added an backgrounImage. I lunch the application and after 4-5 seconds a refresh will done and I see how the backgroundImage will redraw. Can anybody give me an idea or help? thanks, mihai
-
WebBrowserHy I have a WebBrowser. Enter to mail.yahoo.com, make the login, after that I change the page. How can I do if I want to re-enter to mail.yahoo.com to not login to my account. I don't want to do Sign Out. I try to create a new instance of the WebBrowser but doesn't work. thx
-
Yahoo mailHy! It is possible to read how many unread mails have in inbox yahoo mail? thx
-
Net Framework 3ok. But I doanloaded a project with WPF and Visual Studio tell me that it can't loaded it. Why? The project is http://www.codeproject.com/WPF/GuidedTourWPF\_1.asp.
-
Net Framework 3Hy! I have installed Net Framework 3 and it not appear in Visual Studio 2005->Help->About and when I want to create a new project nothing is new, all from version 2. Have anybody any idea? thx
-
WPFHy! I want to play with WPF but I can't. I have installed .NET Framework 3.0 and Visual Studio 2005. What I need to install to learn WPF? I hear about an ORCAS extension and a Windows SDK but I don't know where I fount these. thx
-
DateTimeI did it ! :D
-
DateTimeHy I want to put a variable like DateTime to a DataSet. Is that possible and if ... how can I do that? Can anybody help me? thx
-
SpeedHy I have a site on a host for ASP.NET. I have a file with 30000 records. I have a .mdf file with a table with 30000 records. Method 1 I read from file a record and diplay in a label. Label1.Text = File.ReadAllLines(Server.MapPath("~/fisier.txt"),Encoding.UTF8)[index]; Method 2 I read from .mdf file from my table the same record. Can tell me witch of the 2 method is faster? thx
-
DTS - Data Transformation ServicesBut I want to do that with C# :D
-
DTS - Data Transformation ServicesHy I have 2 databases and one table for each of database. The tables have the same structure. One of them is populate and I want to copy the contain of this to the second table. I want to ask if this is possible with DTS. thx
-
DTS - Data Transformation ServicesHy I have 2 databases and one table for each of database. The tables have the same structure. One of them is populate and I want to copy the contain of this to the second table. I want to ask if this is possible with DTS. thx
-
Project ResourceIt's not a task is for my knowledge. I want to place random image from the project resource to my picturebox.that's it :D
-
Project ResourceHy, I have 3 pictures in a project resource, a picturebox and a button. I want when I press the button to change dynamic the pictures from picturebox. Can anybody help me? thx
-
Keys [modified]Hy, I have the following code put in the protected override OnKeyDown to a RichTextBox: switch (e.KeyCode) { case Keys.Tab: case Keys.Enter: { autocomplete(_defaultColor); e.Handled = true; break; } } and the autocomplete method: private void autocomplete(Color defaultColor) { for (int i = 0; i < 1; i++) { SendKeys.SendWait("{BACKSPACE}"); } SendKeys.SendWait("public"); } 1.Run the application and press "p" then press ENTER. 2.Run the application and press "p" then press TAB. In both cases the effect is different but is the same code for both cases. Can somebody give me an explication? -- modified at 8:58 Tuesday 9th October, 2007
-
Space Key problemDoesn't work. If I put SendKey.Send(" ") it put me more than one space and the application freeze for few moments. If I put SendKey.Send(Keys.Space.ToString()) it put me many SpaceSpaceSapce and the program will not stop
-
Space Key problemDoesn't work. The SendKey.Send receive a string parameter not a Keys
-
Space Key problemHy I want to know how can I send a space with SendKey.Send? thx
-
RichTextBoxIt works with SendKeys.Send("{BACKSPACE}");