Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
GeneralRe: mp3 calculations Pin
Uncle Monkey21-Sep-03 22:31
Uncle Monkey21-Sep-03 22:31 
GeneralRe: mp3 calculations Pin
Julian Bucknall [MSFT]22-Sep-03 5:25
Julian Bucknall [MSFT]22-Sep-03 5:25 
GeneralRe: mp3 calculations Pin
Uncle Monkey22-Sep-03 5:32
Uncle Monkey22-Sep-03 5:32 
Generali want to run the sqlserver agent server Pin
meetweb18-Sep-03 20:07
meetweb18-Sep-03 20:07 
GeneralProblem in accessing an unmanaged dll Pin
Rashi_Ajay18-Sep-03 19:34
Rashi_Ajay18-Sep-03 19:34 
GeneralHELP - Following XML Element Heirarchy Pin
Anonymous18-Sep-03 19:00
Anonymous18-Sep-03 19:00 
GeneralRight Click on the internet explorer Pin
Srikar Y18-Sep-03 17:58
Srikar Y18-Sep-03 17:58 
GeneralRe: Right Click on the internet explorer Pin
Blake Coverett20-Sep-03 15:44
Blake Coverett20-Sep-03 15:44 
The easy was is adding a registry entry documented here on MSDN that points to a file containing your script code.

Here's an example of both that I wrote long ago

Save this in borders.inf:
[Version]
Signature="$Chicago$"
Provider=%BCDEV%
[DefaultInstall]
CopyFiles=Files
AddReg=Reg
[DefaultUninstall]
DelFiles=Files
DelReg=Reg
[Files]
%BASENAME%.htm
%BASENAME%.inf
[Reg]
HKCU,%IKEY%,,,"%10%\%SUBDIR%\%BASENAME%.htm"
HKCU,%IKEY%,contexts,1,%CONTEXTS%
HKLM,%UKEY%
HKLM,%UKEY%,DisplayName,,"%TOOLTITLE%"
HKLM,%UKEY%,UninstallString,,"%UCMD% %10%\%SUBDIR%\%BASENAME%.inf"
[DestinationDirs]
DefaultDestDir=10,%SUBDIR%
[Strings]
TOOLTITLE=IE4 Addon - Show Table Borders
BASENAME=borders
CONTEXTS=1
IKEY=Software\Microsoft\Internet Explorer\MenuExt\Show &Table Borders
UKEY=Software\Microsoft\Windows\CurrentVersion\Uninstall\ShowTableBorders
SUBDIR=web
UCMD="rundll32 syssetup.dll,SetupInfObjectInstallAction DefaultUninstall 132"
BCDEV=Blake Coverett Development

And this in borders.htm
<script language=javascript defer>
var tables = external.menuArguments.document.all.tags("table");
if (tables != null) {
	for (i = 0; i < tables.length; i++)
	{
		tables[i].borderColor = "red";
		tables[i].border = 1
	}
}
</script>


Right click on borders.inf and choose Install. The INF file was meant to be reusable by just changing the strings at the bottom, feel free to reuse it.

--
-Blake (com/bcdev/blake)
GeneralProblem with Object Serialization/Deserialization Pin
alreddawg1918-Sep-03 17:42
alreddawg1918-Sep-03 17:42 
Questionneed advice: DirectX 3-D engine (C++) viewable in C# app? Pin
rob knaack18-Sep-03 13:40
rob knaack18-Sep-03 13:40 
QuestionHow can I suppress the Microsoft .NET Security Information message box? Pin
ElizabethC18-Sep-03 13:19
ElizabethC18-Sep-03 13:19 
GeneralSeperator line in Windows Form Pin
pahluwalia18-Sep-03 11:37
pahluwalia18-Sep-03 11:37 
GeneralRe: Seperator line in Windows Form Pin
eggie518-Sep-03 12:08
eggie518-Sep-03 12:08 
GeneralRe: Seperator line in Windows Form Pin
sumeat18-Sep-03 15:09
sumeat18-Sep-03 15:09 
GeneralRe: Seperator line in Windows Form Pin
rak18-Sep-03 22:59
rak18-Sep-03 22:59 
GeneralAccess Token Pin
BobMaier18-Sep-03 10:56
BobMaier18-Sep-03 10:56 
GeneralSave a high color (16 bit ) image as 256 or 16 color (.bmp format) Pin
mr6018-Sep-03 10:19
mr6018-Sep-03 10:19 
GeneralHELP PLEASE!! Pin
frank2118-Sep-03 8:29
frank2118-Sep-03 8:29 
GeneralRe: HELP PLEASE!! Pin
Guillermo Rivero18-Sep-03 11:12
Guillermo Rivero18-Sep-03 11:12 
GeneralScroll bar position in panels Pin
dgroves18-Sep-03 8:07
dgroves18-Sep-03 8:07 
GeneralRe: Scroll bar position in panels Pin
J. Dunlap18-Sep-03 8:51
J. Dunlap18-Sep-03 8:51 
QuestionHelp, Guru!: serialize/deserialize derived class between two application? Pin
Anonymous18-Sep-03 6:51
Anonymous18-Sep-03 6:51 
QuestionHelp, Guru!: serialize/deserialize derived class between two application? Pin
Anonymous18-Sep-03 6:50
Anonymous18-Sep-03 6:50 
AnswerRe: Help, Guru!: serialize/deserialize derived class between two application? Pin
James T. Johnson18-Sep-03 7:37
James T. Johnson18-Sep-03 7:37 
GeneralRe: Help, Guru!: serialize/deserialize derived class between two application? Pin
Anonymous18-Sep-03 13:21
Anonymous18-Sep-03 13:21 

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.