Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~4K People Reached
Favorite Tags

17 Posted Topics

Member Avatar for viswa_007

I am using a datagridview in my windows application in VS-2005. How can I convert some cells in a particular textbox column in my datagridview to checkbox cell types. Please provide some suggestions with code (if possible) Thanks in advance

Member Avatar for Janice44
0
1K
Member Avatar for viswa_007

Does asp.net complies the dlls into msil every time when an published application is browsed or a windows application exe is run??? How does asp.net minimizes or rather reduces the entire compilation process?? Thanks in advance

Member Avatar for kvprajapati
0
84
Member Avatar for viswa_007

How to update gridview or datagridview in windows appl.. to database at once. generally what we do is we update database using row by row way either using foreach or for loop But I need something which updates to database at one execution

Member Avatar for kvprajapati
0
61
Member Avatar for viswa_007

how to create desktop applications in c# using http requests and http response with iis

Member Avatar for sknake
0
144
Member Avatar for viswa_007
Member Avatar for SubProf

go to main form's properties and set ismdicontainer=true and then for every form's (object when created and called to form.show() before that set the form's mdiparent to the main form) for e.g. form1 obj=new form1(); obj.mdiparent=mainform

Member Avatar for SubProf
0
130
Member Avatar for Renukavani

dataGridView1.Rows[Row].Cells[ColName].Style.SelectionBackColor =your color(Color.Red) for image find this link: [url]http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.rowprepaint(VS.80).aspx[/url]

Member Avatar for LizR
0
982
Member Avatar for viswa_007

I have got 2 problems... 1) How can I find the visible no. of rows in a datagridview and the index of the top row during vertical scroll.I am using visual studio 2005 windows application in c#. 2) How to refresh datagridview's particular no. of rows instead of refreshing the …

Member Avatar for viswa_007
0
98
Member Avatar for Gaurav arora
Member Avatar for AmirBedair
0
103
Member Avatar for viswa_007
Member Avatar for amitj
0
92
Member Avatar for viswa_007

How do I handle more than one thread to run parallely ? one thread keeps on updating the dataset and binding the grid every 10 seconds whis the timer does. so it cannot be stopped.But I want other events to execute fastly without consuming time such as scrolling the grid …

0
87
Member Avatar for viswa_007

Hi, I am facing a problem with alert message on my web page. When alert message is shown, my current web page which fires events automatically after 3 seconds stops until the alert message is gone.So instead i want to use a div which if shown as alert msg my …

Member Avatar for MidiMagic
0
71
Member Avatar for kalyanbabu

Set the tabstop property to false for the controls which are not supposed to work on tab key press.

Member Avatar for SheSaidImaPregy
0
87
Member Avatar for kalyanbabu
Member Avatar for SheSaidImaPregy
0
66
Member Avatar for dotNetDummi

Are you familiar with Ajax control toolkit ? If not then you can find it in google website and get a download of that and add the .dlls to your application and u can use them for any type of control.

Member Avatar for dotNetDummi
0
106
Member Avatar for earlofroberts

if ur control is a grid view then the code to capture the selected row's id in a string is: string str = GridView1.SelectedDataKey.Value.Tostring() Note: Set the Datakeyname from the propertiers of the GridView control to your table's id name and then write the above line of code in gridview's …

Member Avatar for viswa_007
0
90
Member Avatar for rohit gupta

First you create a new class Library from the application by New Project ->Class Library -> give some name to it .and then put your logic into it.Then build the project u created. Now to include the .dll/.exe into another applications go to solution explorer and right click then go …

Member Avatar for viswa_007
0
119

The End.