Click here to Skip to main content
15,911,531 members
Home / Discussions / C#
   

C#

 
GeneralRe: c# code required Pin
Som Shekhar30-Mar-10 6:45
Som Shekhar30-Mar-10 6:45 
QuestionOptions for bluetooth communication with mobile device from PC in C# Pin
Rob Philpott30-Mar-10 5:29
Rob Philpott30-Mar-10 5:29 
AnswerRe: Options for bluetooth communication with mobile device from PC in C# Pin
dan!sh 30-Mar-10 6:09
professional dan!sh 30-Mar-10 6:09 
GeneralRe: Options for bluetooth communication with mobile device from PC in C# Pin
Rob Philpott30-Mar-10 6:23
Rob Philpott30-Mar-10 6:23 
GeneralRe: Options for bluetooth communication with mobile device from PC in C# Pin
dan!sh 30-Mar-10 6:57
professional dan!sh 30-Mar-10 6:57 
Questionmdi child location Pin
Wannes Geysen30-Mar-10 5:18
Wannes Geysen30-Mar-10 5:18 
QuestionQt supports WCF? Pin
ramzg30-Mar-10 2:26
ramzg30-Mar-10 2:26 
AnswerRe: Qt supports WCF? Pin
Ravi Bhavnani30-Mar-10 3:20
professionalRavi Bhavnani30-Mar-10 3:20 
QuestionRe: Qt supports WCF? Pin
Abhinav S30-Mar-10 3:53
Abhinav S30-Mar-10 3:53 
AnswerRe: Qt supports WCF? Pin
ramzg30-Mar-10 4:13
ramzg30-Mar-10 4:13 
GeneralRe: Qt supports WCF? Pin
Abhinav S30-Mar-10 4:18
Abhinav S30-Mar-10 4:18 
QuestionEnterprise Library C# Pin
spankyleo12330-Mar-10 1:44
spankyleo12330-Mar-10 1:44 
AnswerRe: Enterprise Library C# Pin
PSK_30-Mar-10 3:15
PSK_30-Mar-10 3:15 
GeneralRe: Enterprise Library C# Pin
spankyleo12330-Mar-10 3:25
spankyleo12330-Mar-10 3:25 
AnswerRe: Enterprise Library C# Pin
Not Active30-Mar-10 4:23
mentorNot Active30-Mar-10 4:23 
Questiongetting attributes of .mp3 and .wav Pin
w_joerun@yahoo.com30-Mar-10 1:29
w_joerun@yahoo.com30-Mar-10 1:29 
AnswerRe: getting attributes of .mp3 and .wav Pin
TheFoZ30-Mar-10 2:13
TheFoZ30-Mar-10 2:13 
GeneralRe: getting attributes of .mp3 and .wav Pin
w_joerun@yahoo.com2-Apr-10 23:11
w_joerun@yahoo.com2-Apr-10 23:11 
QuestionIs there any way to hide teh blank rows in excel without using loop ? Pin
abcurl30-Mar-10 1:21
abcurl30-Mar-10 1:21 
AnswerRe: Is there any way to hide teh blank rows in excel without using loop ? Pin
TheFoZ30-Mar-10 2:16
TheFoZ30-Mar-10 2:16 
GeneralRe: Is there any way to hide teh blank rows in excel without using loop ? Pin
abcurl30-Mar-10 2:50
abcurl30-Mar-10 2:50 
GeneralRe: Is there any way to hide teh blank rows in excel without using loop ? Pin
TheFoZ30-Mar-10 3:06
TheFoZ30-Mar-10 3:06 
If the rows are at the end, you can find the row of the last cell that contains any data. In VBA it looks like this

Dim lastCell As Range
Set lastCell = Range("A1").SpecialCells(xlCellTypeLastCell)


From that you can work your way up deleting the blank rows. It still uses iteration but there are fewer.
The FoZ

GeneralRe: Is there any way to hide teh blank rows in excel without using loop ? Pin
abcurl30-Mar-10 3:15
abcurl30-Mar-10 3:15 
GeneralRe: Is there any way to hide teh blank rows in excel without using loop ? Pin
TheFoZ30-Mar-10 3:23
TheFoZ30-Mar-10 3:23 
GeneralRe: Is there any way to hide teh blank rows in excel without using loop ? Pin
abcurl30-Mar-10 3:29
abcurl30-Mar-10 3:29 

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.