Click here to Skip to main content
15,888,351 members
Home / Discussions / C#
   

C#

 
GeneralRe: Why I cant close a form normally?????? Pin
Jody Scheckter3-Aug-09 20:54
Jody Scheckter3-Aug-09 20:54 
GeneralRe: Why I cant close a form normally?????? Pin
Henry Minute3-Aug-09 22:19
Henry Minute3-Aug-09 22:19 
AnswerRe: Why I cant close a form normally?????? Pin
Pete O'Hanlon28-Jul-09 1:58
mvePete O'Hanlon28-Jul-09 1:58 
AnswerRe: Why I cant close a form normally?????? PinPopular
Luc Pattyn28-Jul-09 2:18
sitebuilderLuc Pattyn28-Jul-09 2:18 
Questionbind unbound field Pin
behzadcp28-Jul-09 1:01
professionalbehzadcp28-Jul-09 1:01 
AnswerRe: bind unbound field Pin
behzadcp29-Jul-09 2:15
professionalbehzadcp29-Jul-09 2:15 
QuestionCount the bold letters in ms word document Pin
Madhu_San28-Jul-09 0:08
Madhu_San28-Jul-09 0:08 
AnswerRe: Count the bold letters in ms word document Pin
Tamer Oz28-Jul-09 0:54
Tamer Oz28-Jul-09 0:54 
Hope this code helps

Document doc = ac.Documents.Open(ref oldFileName, ref m, ref readOnly,
                    ref m, ref m, ref m, ref m, ref m, ref m, ref m,
                    ref m, ref m, ref m, ref m, ref m, ref m);
                int count = 0;
                for (int i=1;i<= doc.Content.Characters.Count;i++)
                {
                    if (doc.Content.Characters[i].Bold == -1)
                    {
                        count++;
                    }
                }
                MessageBox.Show(count.ToString());

GeneralRe: Count the bold letters in ms word document Pin
Madhu_San28-Jul-09 18:19
Madhu_San28-Jul-09 18:19 
AnswerRe: Count the bold letters in ms word document [modified] Pin
mustang8628-Jul-09 18:35
mustang8628-Jul-09 18:35 
GeneralRe: Count the bold letters in ms word document Pin
mustang8628-Jul-09 18:57
mustang8628-Jul-09 18:57 
QuestionActive Directory fields list - dynamic Pin
havejeet27-Jul-09 23:21
havejeet27-Jul-09 23:21 
AnswerRe: Active Directory fields list - dynamic Pin
Mike Ellison28-Jul-09 3:06
Mike Ellison28-Jul-09 3:06 
GeneralRe: Active Directory fields list - dynamic Pin
havejeet28-Jul-09 3:13
havejeet28-Jul-09 3:13 
QuestionTranfering Data from c# DataSet to SQL using Stored Procedure Pin
G Mohan27-Jul-09 22:59
G Mohan27-Jul-09 22:59 
AnswerRe: Tranfering Data from c# DataSet to SQL using Stored Procedure Pin
Vimalsoft(Pty) Ltd27-Jul-09 23:05
professionalVimalsoft(Pty) Ltd27-Jul-09 23:05 
Questionwhat is the code to include inputbox Pin
Vivek Vijayan27-Jul-09 22:10
Vivek Vijayan27-Jul-09 22:10 
AnswerRe: what is the code to include inputbox Pin
Nagy Vilmos27-Jul-09 22:28
professionalNagy Vilmos27-Jul-09 22:28 
AnswerRe: what is the code to include inputbox Pin
Christian Graus27-Jul-09 23:11
protectorChristian Graus27-Jul-09 23:11 
GeneralRe: what is the code to include inputbox Pin
Nagy Vilmos27-Jul-09 23:21
professionalNagy Vilmos27-Jul-09 23:21 
GeneralRe: what is the code to include inputbox Pin
Christian Graus27-Jul-09 23:36
protectorChristian Graus27-Jul-09 23:36 
GeneralRe: what is the code to include inputbox Pin
Nagy Vilmos27-Jul-09 23:43
professionalNagy Vilmos27-Jul-09 23:43 
GeneralRe: what is the code to include inputbox Pin
Abhishek Sur28-Jul-09 1:47
professionalAbhishek Sur28-Jul-09 1:47 
GeneralRe: what is the code to include inputbox Pin
Nagy Vilmos28-Jul-09 1:50
professionalNagy Vilmos28-Jul-09 1:50 
QuestionEarth Map in C# Pin
Reza Shojaee27-Jul-09 21:07
Reza Shojaee27-Jul-09 21:07 

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.