Click here to Skip to main content
15,892,575 members
Home / Discussions / C#
   

C#

 
AnswerRe: Is it correct to leave COM1 open all along the program ? Pin
Luc Pattyn13-Aug-09 3:23
sitebuilderLuc Pattyn13-Aug-09 3:23 
Questionrandomization of numbers without duplication in C# Pin
vasavi.p13-Aug-09 1:53
vasavi.p13-Aug-09 1:53 
AnswerRe: randomization of numbers without duplication in C# Pin
Pete O'Hanlon13-Aug-09 2:16
mvePete O'Hanlon13-Aug-09 2:16 
AnswerRe: randomization of numbers without duplication in C# Pin
benjymous13-Aug-09 2:24
benjymous13-Aug-09 2:24 
GeneralRe: randomization of numbers without duplication in C# Pin
Luc Pattyn13-Aug-09 2:42
sitebuilderLuc Pattyn13-Aug-09 2:42 
GeneralRe: randomization of numbers without duplication in C# Pin
Pete O'Hanlon13-Aug-09 2:58
mvePete O'Hanlon13-Aug-09 2:58 
GeneralRe: randomization of numbers without duplication in C# Pin
Luc Pattyn13-Aug-09 3:07
sitebuilderLuc Pattyn13-Aug-09 3:07 
GeneralRe: randomization of numbers without duplication in C# Pin
benjymous13-Aug-09 4:46
benjymous13-Aug-09 4:46 
JokeRe: randomization of numbers without duplication in C# Pin
Luc Pattyn13-Aug-09 4:50
sitebuilderLuc Pattyn13-Aug-09 4:50 
GeneralRe: randomization of numbers without duplication in C# Pin
molesworth13-Aug-09 3:12
molesworth13-Aug-09 3:12 
GeneralRe: randomization of numbers without duplication in C# Pin
Pete O'Hanlon13-Aug-09 4:11
mvePete O'Hanlon13-Aug-09 4:11 
GeneralRe: randomization of numbers without duplication in C# Pin
Luc Pattyn13-Aug-09 4:21
sitebuilderLuc Pattyn13-Aug-09 4:21 
GeneralRe: randomization of numbers without duplication in C# Pin
molesworth13-Aug-09 4:52
molesworth13-Aug-09 4:52 
GeneralRe: randomization of numbers without duplication in C# Pin
Pete O'Hanlon13-Aug-09 9:19
mvePete O'Hanlon13-Aug-09 9:19 
GeneralRe: randomization of numbers without duplication in C# Pin
benjymous13-Aug-09 4:44
benjymous13-Aug-09 4:44 
AnswerRe: randomization of numbers without duplication in C# Pin
PIEBALDconsult13-Aug-09 5:13
mvePIEBALDconsult13-Aug-09 5:13 
AnswerRe: randomization of numbers without duplication in C# Pin
cmk13-Aug-09 11:34
cmk13-Aug-09 11:34 
QuestionComexception with addpicture Pin
Member 415407413-Aug-09 0:44
Member 415407413-Aug-09 0:44 
Hi
The procedure below takes a name from the Numbe array and places it in a directory path to find an image file to insert into a word document. All the images are numbered 1,2,3,4.... however, when the number gets bigger than 101 then the compiler complains that the file name is invalid, the file does exist so i can't figure out what is invalid about it?

public void CreateFileColumn(ArrayList array, Array Numbe)
        {
            object missing = System.Reflection.Missing.Value;
            object fileName = "normal.dot";
            object newTemplate = false;
            object docType = 0;
            object isVisible = true;
            Object oUnit = Word.WdUnits.wdCell;
            string FilePath;
           // string table1;

            wordApp = new Word.ApplicationClass();
            wordDoc = wordApp.Documents.Add(ref fileName, ref newTemplate, ref docType, ref isVisible);
            wordApp.Visible = true;
            wordDoc.Activate();
            
            //draw table into document
            wordApp.Selection.Tables.Add(wordApp.Selection.Range, 1, 8, ref missing, ref missing);
           
            wordApp.Selection.ParagraphFormat.Alignment = Word.WdParagraphAlignment.wdAlignParagraphLeft;
            wordApp.Selection.Font.Bold = (int)Word.WdConstants.wdToggle;

            
            //replace each number with picture then add to document
            foreach (string part in Numbe)
            {
                FilePath = @"C:\Users\Jon\Documents\Nick\Chin Font Files\" + part + ".jpg";
                wordApp.Selection.InlineShapes.AddPicture(FilePath , ref missing, ref missing, ref missing);
                wordApp.Selection.MoveRight(ref oUnit, ref missing, ref missing);
            }

        }


Thanks
AnswerRe: Comexception with addpicture Pin
Luc Pattyn13-Aug-09 1:27
sitebuilderLuc Pattyn13-Aug-09 1:27 
GeneralRe: Comexception with addpicture Pin
Member 415407413-Aug-09 3:23
Member 415407413-Aug-09 3:23 
GeneralRe: Comexception with addpicture Pin
Luc Pattyn13-Aug-09 3:35
sitebuilderLuc Pattyn13-Aug-09 3:35 
GeneralRe: Comexception with addpicture Pin
Member 415407413-Aug-09 3:45
Member 415407413-Aug-09 3:45 
QuestionLoad Report Failed Pin
Milind Panchal13-Aug-09 0:07
Milind Panchal13-Aug-09 0:07 
AnswerRe: Load Report Failed Pin
Abhishek Sur13-Aug-09 2:41
professionalAbhishek Sur13-Aug-09 2:41 
QuestionGet Html Element Pin
Mohsen Esmailpour12-Aug-09 23:44
professionalMohsen Esmailpour12-Aug-09 23:44 

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.