About benrwb

Basic Information


Please login or register to view this members information

Statistics


Total Posts
Total Posts
1
Posts Per Day
0.00
Total Thanks
Total Thanks
0
  • Thanked 0 Times in 0 Posts
General Information
Last Activity
Yesterday 03:51 PM
Join Date
3rd March 2011
Referrals
0
View benrwb's Blog

Recent Entries

SIMSPERM!

by benrwb on 23rd May 2011 at 09:35 AM
I have adapted the SIMSPERM batch file so that it can be applied as a Startup Script via Group Policy.

Code:
@echo off

if not exist "%ProgramFiles%\SIMS" goto end

if exist "%ProgramFiles%\SIMS\doneperm.txt" goto end

path \\server\netlogon

SubInAcl /FILE %WINDIR%\SIMS.INI /GRANT=domain\group=F
SubInAcl /SUBDIRECTORIES "%ProgramFiles%\SIMS\*.*" /GRANT=domain\group

Read More

Categories
Uncategorized

Winforms WebBrowser control

by benrwb on 11th April 2011 at 01:06 PM
I've been playing around with the WinForms WebBrowser control this morning, and after lots of experimentation have finally figured out how to use some of the printing functionality.

First of all, Add a Reference to SHDocVw. (Project > Add Reference > Browse > C:\Windows\System32\shdocvw.dll)

Secondly load a document into the browser using webBrowser1.Navigate(url).

Then,
to do "Print Preview"...
Code:
IWebBrowser2 browser

Read More

Categories
Uncategorized

Getting a list of tables in an Access database (C#)

by benrwb on 4th March 2011 at 12:13 PM
Posting this code so that I can remember it/ and in case anyone else finds it useful.

First open the database
Code:
string constr = @"Provider=Microsoft.Jet.OLEDB.4.0;Data source=database.mdb";
OleDbConnection con = new OleDbConnection(constr);
con.Open();
con.GetSchema() will return a list of collections in the database.

Code:
CollectionName        NumberOfRestrictions NumberOfIdentifierParts
--------------------- --------------------

Read More

Categories
Uncategorized
No results to display...

25th May 2011


23rd May 2011


No results to display...