Click here to Skip to main content
15,911,531 members
Home / Discussions / C#
   

C#

 
GeneralRe: Strongly typed DataSet from a web service Pin
bjoernen15-Apr-04 4:47
bjoernen15-Apr-04 4:47 
GeneralRe: Strongly typed DataSet from a web service Pin
Heath Stewart15-Apr-04 5:03
protectorHeath Stewart15-Apr-04 5:03 
GeneralRe: Strongly typed DataSet from a web service Pin
bjoernen15-Apr-04 21:06
bjoernen15-Apr-04 21:06 
GeneralRe: Strongly typed DataSet from a web service Pin
Heath Stewart16-Apr-04 3:55
protectorHeath Stewart16-Apr-04 3:55 
Generalall client machine in local network Pin
Anonymous15-Apr-04 2:14
Anonymous15-Apr-04 2:14 
GeneralRe: all client machine in local network Pin
Stefan Troschuetz15-Apr-04 5:21
Stefan Troschuetz15-Apr-04 5:21 
QuestionHow can i draw many small bitmap into a large one ? Pin
fu015-Apr-04 2:12
fu015-Apr-04 2:12 
AnswerRe: How can i draw many small bitmap into a large one ? Pin
Colin Angus Mackay15-Apr-04 3:13
Colin Angus Mackay15-Apr-04 3:13 
In this example dest is the destination bitmap and SourceBmp is the source bitmap, I've used x and y loops to simulate putting many smaller (48x48 pixedl) bitmaps into one large (192x192 pixel) bitmap.

Bitmap dest = new Bitmap(48*4, 48*4);
Graphics g = Graphics.FromImage(dest);
for(int x = 0; x<4; x++)
{
	for(int y = 0; y<4; y++)
	{
		g.DrawImage(SourceBmp,x*48,y*48,48,48);
	}
}


Does this help?


"You can have everything in life you want if you will just help enough other people get what they want." --Zig Ziglar

Coming soon: The Second EuroCPian Event[^].


GeneralSerialization Pin
Large Data File14-Apr-04 23:46
Large Data File14-Apr-04 23:46 
GeneralRe: Serialization Pin
Heath Stewart15-Apr-04 5:11
protectorHeath Stewart15-Apr-04 5:11 
GeneralRe: Serialization Pin
Large Data File15-Apr-04 5:47
Large Data File15-Apr-04 5:47 
GeneralRe: Serialization Pin
Heath Stewart15-Apr-04 5:50
protectorHeath Stewart15-Apr-04 5:50 
GeneralRe: Serialization Pin
Large Data File15-Apr-04 6:20
Large Data File15-Apr-04 6:20 
GeneralRe: Serialization Pin
Heath Stewart15-Apr-04 6:28
protectorHeath Stewart15-Apr-04 6:28 
GeneralAbout ShutDown in XP Pin
lajiyo14-Apr-04 23:02
lajiyo14-Apr-04 23:02 
GeneralRe: About ShutDown in XP Pin
Heath Stewart15-Apr-04 4:59
protectorHeath Stewart15-Apr-04 4:59 
GeneralRe: About ShutDown in XP Pin
lajiyo18-Apr-04 15:19
lajiyo18-Apr-04 15:19 
GeneralRe: About ShutDown in XP Pin
Heath Stewart19-Apr-04 2:17
protectorHeath Stewart19-Apr-04 2:17 
GeneralRe: About ShutDown in XP Pin
lajiyo20-Apr-04 0:37
lajiyo20-Apr-04 0:37 
GeneralRe: About ShutDown in XP Pin
Heath Stewart20-Apr-04 3:55
protectorHeath Stewart20-Apr-04 3:55 
GeneralRe: About ShutDown in XP Pin
lajiyo21-Apr-04 5:14
lajiyo21-Apr-04 5:14 
GeneralRe: About ShutDown in XP Pin
Heath Stewart21-Apr-04 6:46
protectorHeath Stewart21-Apr-04 6:46 
GeneralAccessing C++ classes from within C# .NET Pin
Vini Deep14-Apr-04 22:53
Vini Deep14-Apr-04 22:53 
GeneralRe: Accessing C++ classes from within C# .NET Pin
lajiyo14-Apr-04 23:10
lajiyo14-Apr-04 23:10 
GeneralRe: Accessing C++ classes from within C# .NET Pin
Vini Deep14-Apr-04 23:24
Vini Deep14-Apr-04 23:24 

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.