Click here to Skip to main content
15,905,073 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to Open a .cs file in already Opened Visual Studio2005 IDE Pin
fly9045-Mar-09 1:33
fly9045-Mar-09 1:33 
AnswerRe: How to Open a .cs file in already Opened Visual Studio2005 IDE Pin
himuskanhere5-Mar-09 1:51
himuskanhere5-Mar-09 1:51 
Questionabout getting google image search result in c# project Pin
yogesh_deshmukh5-Mar-09 0:52
yogesh_deshmukh5-Mar-09 0:52 
AnswerRe: about getting google image search result in c# project Pin
Eddy Vluggen5-Mar-09 1:12
professionalEddy Vluggen5-Mar-09 1:12 
GeneralRe: about getting google image search result in c# project Pin
yogesh_deshmukh6-Mar-09 2:10
yogesh_deshmukh6-Mar-09 2:10 
QuestionRe: XML Pin
jeyabalraju5-Mar-09 0:43
jeyabalraju5-Mar-09 0:43 
AnswerRe: XML Pin
fly9045-Mar-09 1:05
fly9045-Mar-09 1:05 
Questionmerge two pdf Pin
abbd4-Mar-09 23:58
abbd4-Mar-09 23:58 
QuestionRe: merge two pdf Pin
Eddy Vluggen5-Mar-09 0:21
professionalEddy Vluggen5-Mar-09 0:21 
AnswerRe: merge two pdf Pin
abbd5-Mar-09 0:33
abbd5-Mar-09 0:33 
GeneralRe: merge two pdf Pin
Eddy Vluggen5-Mar-09 1:07
professionalEddy Vluggen5-Mar-09 1:07 
GeneralRe: merge two pdf Pin
abbd5-Mar-09 1:31
abbd5-Mar-09 1:31 
GeneralRe: merge two pdf Pin
Christian Graus5-Mar-09 8:17
protectorChristian Graus5-Mar-09 8:17 
QuestionRandom Permutation Pin
rohan40404-Mar-09 23:50
rohan40404-Mar-09 23:50 
RantRe: Random Permutation Pin
Smithers-Jones5-Mar-09 1:33
Smithers-Jones5-Mar-09 1:33 
JokeRe: Random Permutation Pin
Zhat5-Mar-09 2:05
Zhat5-Mar-09 2:05 
GeneralRe: Random Permutation Pin
Smithers-Jones5-Mar-09 2:32
Smithers-Jones5-Mar-09 2:32 
JokeRe: Random Permutation Pin
Curtis Schlak.5-Mar-09 10:02
Curtis Schlak.5-Mar-09 10:02 
QuestionHow to use a class for xml related logic taking xml file "uri" as initializer. Pin
rasingh14-Mar-09 23:31
rasingh14-Mar-09 23:31 
QuestionHow to extract the text from PDF file which was opened in IE? Pin
svt gdwl4-Mar-09 23:30
svt gdwl4-Mar-09 23:30 
AnswerRe: How to extract the text from PDF file which was opened in IE? Pin
Mirko19805-Mar-09 0:00
Mirko19805-Mar-09 0:00 
AnswerRe: How to extract the text from PDF file which was opened in IE? Pin
Mladen Janković5-Mar-09 3:38
Mladen Janković5-Mar-09 3:38 
QuestionMove the selected row to one row up and make it selected Pin
Anu Palavila4-Mar-09 23:28
Anu Palavila4-Mar-09 23:28 
Hi Me with C#.net gridview, I am trying to move the selected row to one row up on uparrow keydown and is working fine but after moving the selected row to one row up still the selected row remains with the previous row, How can I make the selected row as the one which I had moved up so that on the next uparrow key press that row will move up
my code is

private void dgvQuotationEntry_KeyDown(object sender, KeyEventArgs e)
{

int Asciival = e.KeyValue;
string ID , PRDCode
int rowIndex = 0, rowCount;
rowIndex = dgvQuotationEntry.CurrentCell.RowIndex;
rowCount = dgvQuotationEntry.Rows.Count;

if (Asciival == 38)
{
if (dgvQuotationEntry.CurrentCell != null && rowIndex != 0)
{
ID = dgvQuotationEntry.CurrentRow.Cells[0].Value.ToString();
PRDCode = dgvQuotationEntry.CurrentRow.Cells[1].Value.ToString();

dgvQuotationEntry.Rows.RemoveAt(rowIndex);
dgvQuotationEntry.Rows.Insert(--rowIndex, ID , PRDCode);
}
}
}

Thanks & Regards

AnswerRe: Move the selected row to one row up and make it selected Pin
WvdW5-Mar-09 1:36
WvdW5-Mar-09 1:36 
GeneralRe: Move the selected row to one row up and make it selected Pin
Anu Palavila6-Mar-09 19:55
Anu Palavila6-Mar-09 19:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.