Click here to Skip to main content
16,015,296 members
Home / Discussions / C#
   

C#

 
GeneralRe: Image processing Pin
Sajjad Izadi7-Jun-08 8:54
Sajjad Izadi7-Jun-08 8:54 
Questionwhat is the current screen resolution? Pin
Sajjad Izadi7-Jun-08 5:55
Sajjad Izadi7-Jun-08 5:55 
AnswerRe: what is the current screen resolution? Pin
Christian Graus7-Jun-08 6:21
protectorChristian Graus7-Jun-08 6:21 
GeneralRe: what is the current screen resolution? Pin
Sajjad Izadi7-Jun-08 7:14
Sajjad Izadi7-Jun-08 7:14 
QuestionSpell check word highlighting problem... Pin
sagedread7-Jun-08 5:11
sagedread7-Jun-08 5:11 
AnswerRe: Spell check word highlighting problem... Pin
Christian Graus7-Jun-08 5:41
protectorChristian Graus7-Jun-08 5:41 
GeneralRe: Spell check word highlighting problem... Pin
sagedread7-Jun-08 6:07
sagedread7-Jun-08 6:07 
GeneralRe: Spell check word highlighting problem... Pin
sagedread7-Jun-08 6:57
sagedread7-Jun-08 6:57 
Fixed it!!!

SpellCheck checker = new SpellCheck();
            PhoenixText.Forms.MdiWindow win = (PhoenixText.Forms.MdiWindow)this.ActiveMdiChild;
            Char[] characters = win.TextBox.Text.ToCharArray();
            foreach (string word in win.KeyWords)
            {
                int firstIndex = win.TextBox.Text.IndexOf(word);
                int lastindex = word.Length;
               // MessageBox.Show(firstIndex.ToString() + "   " + lastindex.ToString());
                if (checker.CheckSpelling(word) == false)
                {
                    win.TextBox.Select(firstIndex, lastindex);
                    win.TextBox.SelectionFont = new Font(win.TextBox.Font, FontStyle.Underline);
                    win.TextBox.DeselectAll();
                    win.TextBox.Refresh();
                }
            }

Question[Message Deleted] Pin
Saba027-Jun-08 4:41
Saba027-Jun-08 4:41 
AnswerRe: Getting Parameter from TextBox Pin
teejayem7-Jun-08 4:55
teejayem7-Jun-08 4:55 
AnswerRe: Getting Parameter from TextBox Pin
Christian Graus7-Jun-08 5:43
protectorChristian Graus7-Jun-08 5:43 
QuestionHow to Auto update PAD file? Pin
Sukhjinder_K7-Jun-08 2:30
Sukhjinder_K7-Jun-08 2:30 
AnswerRe: How to Auto update PAD file? Pin
Sajjad Izadi7-Jun-08 3:14
Sajjad Izadi7-Jun-08 3:14 
GeneralRe: How to Auto update PAD file? Pin
Sukhjinder_K7-Jun-08 4:00
Sukhjinder_K7-Jun-08 4:00 
AnswerRe: How to Auto update PAD file? Pin
Ed.Poore7-Jun-08 8:57
Ed.Poore7-Jun-08 8:57 
GeneralParse and update PAD from exe info Pin
Sukhjinder_K7-Jun-08 23:59
Sukhjinder_K7-Jun-08 23:59 
GeneralRe: Parse and update PAD from exe info Pin
Ed.Poore8-Jun-08 0:21
Ed.Poore8-Jun-08 0:21 
GeneralWill write my own utility Pin
Sukhjinder_K8-Jun-08 0:29
Sukhjinder_K8-Jun-08 0:29 
GeneralRe: Will write my own utility Pin
Ed.Poore8-Jun-08 0:37
Ed.Poore8-Jun-08 0:37 
GeneralThanks Pin
Sukhjinder_K8-Jun-08 0:41
Sukhjinder_K8-Jun-08 0:41 
QuestionHow is it if i want to have my desktop wallpaper as an image? Pin
Sajjad Izadi6-Jun-08 22:31
Sajjad Izadi6-Jun-08 22:31 
AnswerRe: How is it if i want to have my desktop wallpaper as an image? Pin
Anthony Mushrow7-Jun-08 3:23
professionalAnthony Mushrow7-Jun-08 3:23 
GeneralRe: How is it if i want to have my desktop wallpaper as an image? Pin
Sajjad Izadi7-Jun-08 4:14
Sajjad Izadi7-Jun-08 4:14 
QuestionWhy we use the attribute of class or function Pin
wasimsharp6-Jun-08 20:22
wasimsharp6-Jun-08 20:22 
AnswerRe: Why we use the attribute of class or function Pin
DaveyM696-Jun-08 22:06
professionalDaveyM696-Jun-08 22:06 

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.