Click here to Skip to main content
15,894,405 members
Home / Discussions / C#
   

C#

 
QuestionCan save directly from the DataTable into the Table of Access 2000 ? Pin
Member 245846730-Oct-16 15:56
Member 245846730-Oct-16 15:56 
AnswerRe: Can save directly from the DataTable into the Table of Access 2000 ? Pin
Dave Kreskowiak30-Oct-16 17:49
mveDave Kreskowiak30-Oct-16 17:49 
QuestionC# System Information Pin
Pavlex430-Oct-16 8:02
Pavlex430-Oct-16 8:02 
AnswerRe: C# System Information Pin
NotPolitcallyCorrect30-Oct-16 9:02
NotPolitcallyCorrect30-Oct-16 9:02 
AnswerRe: C# System Information Pin
shahidul.haq2-Nov-16 11:18
shahidul.haq2-Nov-16 11:18 
QuestionColumnMapping to properties of an class object Pin
hpjchobbes29-Oct-16 10:57
hpjchobbes29-Oct-16 10:57 
AnswerRe: ColumnMapping to properties of an class object Pin
Richard Deeming31-Oct-16 3:45
mveRichard Deeming31-Oct-16 3:45 
QuestionEntity FrameWork Code First to create Table on schema other than dbo Pin
indian14326-Oct-16 9:40
indian14326-Oct-16 9:40 
AnswerRe: Entity FrameWork Code First to create Table on schema other than dbo Pin
Richard Deeming27-Oct-16 2:05
mveRichard Deeming27-Oct-16 2:05 
GeneralRe: Entity FrameWork Code First to create Table on schema other than dbo Pin
indian14327-Oct-16 11:43
indian14327-Oct-16 11:43 
GeneralRe: Entity FrameWork Code First to create Table on schema other than dbo Pin
Richard Deeming28-Oct-16 2:16
mveRichard Deeming28-Oct-16 2:16 
AnswerRe: Entity FrameWork Code First to create Table on schema other than dbo Pin
Slacker00727-Oct-16 2:17
professionalSlacker00727-Oct-16 2:17 
GeneralRe: Entity FrameWork Code First to create Table on schema other than dbo Pin
indian14327-Oct-16 12:02
indian14327-Oct-16 12:02 
QuestionC# Active Directory Services Pin
Member 80737426-Oct-16 8:43
Member 80737426-Oct-16 8:43 
QuestionC# ActiveDirectory Services Pin
Member 80737426-Oct-16 8:41
Member 80737426-Oct-16 8:41 
QuestionStitching Together Thousands Of Bitmaps Pin
JBHowl20-Oct-16 6:26
JBHowl20-Oct-16 6:26 
I have an array as such

C#
List<Bitmap> imgList = new List<Bitmap>();


i need to scroll through that list, very quickly and stitch all the images into one. Like so

C#
using (Bitmap b = new Bitmap(imgList[0].Width, imgList[0].Height * imgList.Count, System.Drawing.Imaging.PixelFormat.Format24bppRgb))
            {
                using (Graphics g = Graphics.FromImage(b))
                {
                    for (int i=0;i<imgList.Count;i++)
                    {
                        g.DrawImage(imgList[i], 0, i * imgList[i].Height);
                    }
                }
                b.Save(fileName, ImageFormat.Bmp);
                Process.Start(f);              
            }
            imgList.Clear()


The problem that i'm running into is that the images are 2000 wide by 2 high, and there could be 30,000-100,000 images in the array. When I try to make a blank bitmap that size, it get a parameter not found error. Any help would be GREATLY appreciated.
AnswerRe: Stitching Together Thousands Of Bitmaps Pin
OriginalGriff20-Oct-16 6:53
mveOriginalGriff20-Oct-16 6:53 
AnswerRe: Stitching Together Thousands Of Bitmaps Pin
Midi_Mick20-Oct-16 6:54
professionalMidi_Mick20-Oct-16 6:54 
AnswerRe: Stitching Together Thousands Of Bitmaps Pin
Gerry Schmitz20-Oct-16 7:45
mveGerry Schmitz20-Oct-16 7:45 
AnswerRe: Stitching Together Thousands Of Bitmaps Pin
Eddy Vluggen20-Oct-16 10:55
professionalEddy Vluggen20-Oct-16 10:55 
AnswerRe: Stitching Together Thousands Of Bitmaps Pin
Pete O'Hanlon20-Oct-16 21:18
mvePete O'Hanlon20-Oct-16 21:18 
AnswerRe: Stitching Together Thousands Of Bitmaps Pin
JBHowl21-Oct-16 3:26
JBHowl21-Oct-16 3:26 
GeneralRe: Stitching Together Thousands Of Bitmaps Pin
Eddy Vluggen21-Oct-16 3:50
professionalEddy Vluggen21-Oct-16 3:50 
GeneralRe: Stitching Together Thousands Of Bitmaps Pin
Midi_Mick21-Oct-16 14:40
professionalMidi_Mick21-Oct-16 14:40 
AnswerRe: Stitching Together Thousands Of Bitmaps Pin
Luc Pattyn21-Oct-16 13:52
sitebuilderLuc Pattyn21-Oct-16 13:52 

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.