Click here to Skip to main content
15,798,200 members
Home / Discussions / C#
   

C#

 
AnswerRe: Merging Of Multiple Activex Wrapper Dll Into Single Assembly Pin
Jakob Farian Krarup17-Apr-06 20:38
Jakob Farian Krarup17-Apr-06 20:38 
GeneralRe: Merging Of Multiple Activex Wrapper Dll Into Single Assembly Pin
vighnesha17-Apr-06 21:42
vighnesha17-Apr-06 21:42 
QuestionSuggest me for Data Migration tools Pin
mahesh_magham17-Apr-06 19:22
mahesh_magham17-Apr-06 19:22 
Questionhow to get all windows that are programs Pin
g00fyman17-Apr-06 19:18
g00fyman17-Apr-06 19:18 
AnswerRe: how to get all windows that are programs Pin
alexey N17-Apr-06 19:58
alexey N17-Apr-06 19:58 
GeneralRe: how to get all windows that are programs Pin
g00fyman17-Apr-06 20:19
g00fyman17-Apr-06 20:19 
GeneralRe: how to get all windows that are programs Pin
g00fyman17-Apr-06 20:42
g00fyman17-Apr-06 20:42 
Questionstatic question Pin
Old Gun17-Apr-06 19:04
Old Gun17-Apr-06 19:04 
I am not sure my code,Is it right?

public class Macro_RemoveExcelDefaultGridLines
{
///
/// Excel Macro : Remove Microsoft Excel's Default Grid Lines
///

private static string _Name = "RemoveDefaultGrid";

private static string _Body =""
+ " Sub RemoveDefaultGrid()\n"
+ " Cells.Select\n"
+ " With ActiveWindow\n"
+ " .DisplayGridlines = False\n"
+ " .DisplayZeros = False\n"
+ " End With\n"
+ "End Sub\n";
public static string Name
{
get{return _Name;}
}
public static string Body
{
get{ return _Body;}
}
}
AnswerRe: static question Pin
alexey N17-Apr-06 19:10
alexey N17-Apr-06 19:10 
GeneralRe: static question Pin
Old Gun17-Apr-06 20:01
Old Gun17-Apr-06 20:01 
GeneralRe: static question Pin
alexey N17-Apr-06 20:49
alexey N17-Apr-06 20:49 
AnswerRe: static question Pin
Guffa17-Apr-06 21:51
Guffa17-Apr-06 21:51 
GeneralRe: static question Pin
Old Gun17-Apr-06 22:35
Old Gun17-Apr-06 22:35 
GeneralRe: static question Pin
Old Gun18-Apr-06 2:39
Old Gun18-Apr-06 2:39 
QuestionDetect when windows added Pin
Hossein Margani17-Apr-06 17:26
Hossein Margani17-Apr-06 17:26 
Questionsetting new interval value and turning on timer in Parent Form Pin
emran83417-Apr-06 17:00
emran83417-Apr-06 17:00 
AnswerRe: setting new interval value and turning on timer in Parent Form Pin
Robin Panther17-Apr-06 18:02
Robin Panther17-Apr-06 18:02 
QuestionProgress Pin
Sean8917-Apr-06 16:23
Sean8917-Apr-06 16:23 
AnswerRe: Progress Pin
enjoycrack17-Apr-06 17:58
enjoycrack17-Apr-06 17:58 
QuestionHandling Data Error Event Pin
emran83417-Apr-06 16:21
emran83417-Apr-06 16:21 
QuestionGraphics and pixel manipulation Pin
Maksymus00717-Apr-06 14:41
Maksymus00717-Apr-06 14:41 
AnswerRe: Graphics and pixel manipulation Pin
Office Lineman17-Apr-06 14:51
Office Lineman17-Apr-06 14:51 
GeneralRe: Graphics and pixel manipulation Pin
Maksymus00717-Apr-06 23:44
Maksymus00717-Apr-06 23:44 
QuestionDatagridview Pin
thepersonof17-Apr-06 14:03
thepersonof17-Apr-06 14:03 
AnswerRe: Datagridview Pin
Office Lineman17-Apr-06 14:36
Office Lineman17-Apr-06 14:36 

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.