Hi! I have to write a little program in C#, which I should be able to detect when a new program has been opened. Does anyone have some sample code or hints where to start in order to detect when a new application has been opened. :confused: Thanks in advance Werner
Werner Vos
Posts
-
Detect when new application opened? -
Menu iconsCan anyone help me to add an icon on a menu item???
-
DataGridTableStyleHere is some code I used in one of my projects and it worked quite fine. Hope it helps... Private Sub setDGProperties() dgDetails.TableStyles.Clear() Dim dgts As New DataGridTableStyle dgts.MappingName = "TransDetails" dgts.AlternatingBackColor = Color.LightGray Dim prod As New DataGridTextBoxColumn prod.MappingName = "ProductID" prod.HeaderText = "ProductID" dgts.GridColumnStyles.Add(prod) Dim cname As New DataGridTextBoxColumn cname.MappingName = "ProductName" cname.HeaderText = "Product Name" cname.Width = 120 dgts.GridColumnStyles.Add(cname) Dim quan As New DataGridTextBoxColumn quan.MappingName = "Quantity" quan.HeaderText = "Quantity" dgts.GridColumnStyles.Add(quan) Dim price As New DataGridTextBoxColumn price.MappingName = "TPrice" price.HeaderText = "Price" price.Format = "C" dgts.GridColumnStyles.Add(price) dgDetails.TableStyles.Add(dgts) End Sub
-
Need help sending SMS with VB.NETCan anyone help me with any sample code for sending a SMS in VB.NET? Any help will be appreciated. This is quite urgent, I need this for a project that has to be completed soon.