Click here to Skip to main content
15,867,568 members
Home / Discussions / C#
   

C#

 
GeneralUsing Images of Satellite Assemblies Pin
Bilal Farooq21-Apr-04 19:54
Bilal Farooq21-Apr-04 19:54 
GeneralRe: Using Images of Satellite Assemblies Pin
Heath Stewart22-Apr-04 3:29
protectorHeath Stewart22-Apr-04 3:29 
GeneralGet currently active window Pin
Bilal Farooq21-Apr-04 19:42
Bilal Farooq21-Apr-04 19:42 
GeneralRe: Get currently active window Pin
A.Wegierski22-Apr-04 0:26
A.Wegierski22-Apr-04 0:26 
GeneralRe: Get currently active window Pin
Bilal Farooq22-Apr-04 3:29
Bilal Farooq22-Apr-04 3:29 
GeneralRe: Get currently active window Pin
Heath Stewart22-Apr-04 3:39
protectorHeath Stewart22-Apr-04 3:39 
Generalauto+indentation feature Pin
kumaru_san21-Apr-04 19:04
kumaru_san21-Apr-04 19:04 
GeneralRe: auto+indentation feature Pin
leppie22-Apr-04 7:29
leppie22-Apr-04 7:29 
kumaru_san wrote:
And i use richtextbox.

Thats not gonna help much as you will realise it is rather limited. Here's what I use:

int GetIndent(string text, int tabsize)
{
	if (text == null) return 0;
	const char SPACE	= ' '	;
	const char TAB		= '\t';
	int indent = 0, pos = 0, count = 0;
	while (pos < text.Length)
	{
		switch(text[pos++])
		{
			case SPACE:
				count++;
				if (count == tabsize)
				{
					indent++;
					count = 0;
				}
				break;
			case TAB:
				indent++;
				count = 0;
				break;
			default:
				return indent;
		}
	}
	return indent;
}



GeneralRe: auto+indentation feature Pin
kumaru_san22-Apr-04 18:32
kumaru_san22-Apr-04 18:32 
QuestionHow to float window over application properly Pin
Michael Wolski21-Apr-04 18:10
Michael Wolski21-Apr-04 18:10 
AnswerRe: How to float window over application properly Pin
Heath Stewart22-Apr-04 3:42
protectorHeath Stewart22-Apr-04 3:42 
GeneralRe: How to float window over application properly Pin
Michael Wolski22-Apr-04 4:20
Michael Wolski22-Apr-04 4:20 
Generalusercontrol Pin
Member 102128921-Apr-04 16:42
Member 102128921-Apr-04 16:42 
QuestionHow can I send an Image over a socket connection? Pin
Gakujin21-Apr-04 16:20
Gakujin21-Apr-04 16:20 
AnswerRe: How can I send an Image over a socket connection? Pin
Michael Wolski21-Apr-04 18:40
Michael Wolski21-Apr-04 18:40 
GeneralRe: How can I send an Image over a socket connection? Pin
Tim Kohler22-Apr-04 1:32
Tim Kohler22-Apr-04 1:32 
GeneralList box line spacing Pin
interlocked21-Apr-04 15:26
interlocked21-Apr-04 15:26 
GeneralAuto complete in custom web browser Pin
Weiye Chen21-Apr-04 15:22
Weiye Chen21-Apr-04 15:22 
GeneralRe: Auto complete in custom web browser Pin
Roman Rodov21-Apr-04 17:36
Roman Rodov21-Apr-04 17:36 
GeneralSetup &amp; Deployment project - &quot;All User&quot; installation Pin
Ruchi Gupta21-Apr-04 13:47
Ruchi Gupta21-Apr-04 13:47 
GeneralRe: Setup &amp; Deployment project - &quot;All User&quot; installation Pin
sreejith ss nair21-Apr-04 18:59
sreejith ss nair21-Apr-04 18:59 
GeneralRe: Setup &amp; Deployment project - &quot;All User&quot; installation Pin
Ruchi Gupta22-Apr-04 5:00
Ruchi Gupta22-Apr-04 5:00 
GeneralRe: Setup &amp; Deployment project - &quot;All User&quot; installation Pin
Heath Stewart22-Apr-04 3:52
protectorHeath Stewart22-Apr-04 3:52 
GeneralRe: Setup &amp; Deployment project - &quot;All User&quot; installation Pin
Ruchi Gupta22-Apr-04 4:52
Ruchi Gupta22-Apr-04 4:52 
QuestionHow can i make an event on the scrollbar of the TreeView Pin
amr_tahlawi21-Apr-04 11:49
amr_tahlawi21-Apr-04 11:49 

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.