It's too long span plz provide me your answer
Sumit Prakash Sharma
Posts
-
Adding my app's link to Desktop Context Menu -
How to monitor the sites open on particular pcThanks for reply After consulting with cliet, when i told him that this is against human rights. he said to me that he wants to know only domain names not full URL with query data. he wants to know the domain names like songs.pk, mp3pk.com, yahoo.com, youtube.com etc atcually he told his employees not to use unnecessary sites at working time because it effects the work. after long waiting he decide to get such application that could tell him about the domain names opened on particular system. when he check out at the server he get all the url requested and found that employee open youtube.com and watch the vedio at working time. so he wants to stop that particular employee. thats why he wants to get this application.
-
How to monitor the sites open on particular pcThanks for your kind reply
-
How to monitor the sites open on particular pcActually i don't take contract for this task, i want to reply him that it is possible or not. if possible then i will take contract from him.
-
How to monitor the sites open on particular pcActually there is a client, he wants to monitor all the web request, he don't wants to go on particular machine but he wants to receive an email containing that URI/URLs. it is totally new task for me and i thought that code project family member can do everything that's why i need your help. so tell me is it possible by vb.net programming or not. Thanks
-
How to monitor the sites open on particular pcMy problem is that i want to know the web sites open in my network's pc so that i could monitor all the web site open on that computer. i want to develop a desktop application that will be install on each machine and will keep the url information and at particular time it will send an email containing all the requested URLs. Please help and guide me.
-
code for automatic select value from ms-excel columnPlz post your problem in detail, so that i could solve it. It is not too hard to read data or record from excel sheet.
-
Validating XML fileGood Morning to all I have following data in xml file <StudentInfo> <student rollno="101"> <name>ABC</name> <contactNo>9926090838</contactNo> <email>sumitprakash_sharma@yahoo.com</email> </student> </StudentInfo> now as we see all the values is in proper data type ie . rollno integer name string contactNo long email string now i want to validate user to enter the information in proper data type so please tell me how can i validate user to insert proper data
-
Fetching record that have a particular value in a comma separated value in column [modified]Good evening I have a table in database like following one --------------------------------------------------------------------- rollNo | Name | Subjects --------------------------------------------------------------------- 101 | abc | english, maths, social science, science, hindi 102 | def | maths, social science, science 103 | ghi | english, social science, hindi 101 | jkl | english, maths, social science, science, hindi ---------------------------------------------------------------------- now i want to select only those records which have "science" in the "Subjects" column so i use Select * from tblStudent Where Subjects LIKE "%Science%" but it also give the records that have "Social Science" ie record no 3 please help me thanks in advance
modified on Saturday, May 2, 2009 8:40 AM
-
How to select AutoCad 2006 table object using ObjectARX, DotNetArx or by vb.netHi Dear I have found the solution for my question. Now i am using DotNetArx to select the Autocad TABLE object. Have a nice day, take care, bye
-
How to select AutoCad 2006 table object using ObjectARX, DotNetArx or by vb.netThanks for reply Can you tell me some good forum that deals with Auto Cad and it's my request to you that when ever you find such forum than plz tell me. Again thanks
-
How to select AutoCad 2006 table object using ObjectARX, DotNetArx or by vb.net -
How to disable TabPage of TabControlIts Ok Dear As there is no any "Enabled" property of tab page so we have to check it is in tabcontrol's "SelectedIndexChanged" event like the following code Private Sub tabCon_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles tabCon.SelectedIndexChanged If YourCondition Then Me.tabCon.SelectedIndex = 1 End If End Sub to set defualt TabPage write the following code in form load event Me.tabCon.SelectedIndex = 1 'Here 1 is the index of desired tabpage
-
Adding my app's link to Desktop Context MenuThanks i am already know this that. but i want to know how to add shortcut on desktop context menu, so that whenever user perform right click on desktop, my application's shortcut should be visible. please help me
-
How to disable TabPage of TabControlThanks for answer its too informatic and good
-
How to disable TabPage of TabControlmy question is not about how to add or remove tab pages, but i want to enable - disable some tab page by programming
-
Adding my app's link to Desktop Context MenuSorry it is not working properly please provide me step by step solution. Thanks
-
Adding my app's link to Desktop Context MenuWhen you right click on the desktop you get a context menu that has something like that: ----------------------- Arrange Icons By Refresh ----------------------- Paste Paste Shortcut ----------------------- New ----------------------- Properties ----------------------- I need to add a link to my application on Desktop's context menu. How can I accomplish that? What registry key do I need to modify/add to get my app icon listed on the desktop context menu? E.g.: --------------------------- Arrange Icons By > Refresh --------------------------- My App Link > Paste Paste Shortcut --------------------------- New --------------------------- Properties --------------------------- Please help. Thanks.
-
Adding my app's link to Desktop Context MenuWhen you right click on the desktop you get a context menu that has something like that: ----------------------- Arrange Icons By Refresh ----------------------- Paste Paste Shortcut ----------------------- New ----------------------- Properties ----------------------- I need to add a link to my application on Desktop's context menu. How can I accomplish that? What registry key do I need to modify/add to get my app icon listed on the desktop context menu? E.g.: --------------------------- Arrange Icons By > Refresh --------------------------- My App Link > Paste Paste Shortcut --------------------------- New --------------------------- Properties --------------------------- Please help. Thanks.
-
How to disable TabPage of TabControlIn my application there are 3 tab pages my problem is when i open my application 3rd tab pages should be open and other 1st and 2nd tab page should be disabled. if i click on enable tab pages then both 1st and 2nd tab page will be enable and 3rd tab page should be disable i have tried tabpage.hide property of tab page but it is not work