Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~517 People Reached
Interests
Reading, writing, drawing, meditating, computer games and other geeky stuff.
Member Avatar for Jinspire

Hello, everyone, My question deals with Excel, and not Access, but I understand they should be roughly the same. I have an Excel worksheet which contains several tables. The tables are actually named ranges; basically, I grabbed an area, gave it a name, and -voila!- it is a table. Until …

Member Avatar for Jinspire
0
101
Member Avatar for Jinspire

Hello, everyone! I have a the following regular expression validator: [CODE]<asp:RegularExpressionValidator ID="revTime" runat="server" ControlToValidate="txtTime" ErrorMessage="Time interval must be between 00:00 and 23:59" ValidationExpression="(^0{0,1}\d:[0-5]\d{0,1}$)|(^[0,1]\d:[0-5]\d(0,1)$)|(^2[0-3]:[0-5]\d(0,1)$)" Display="Dynamic" />[/CODE] The validator WORKS. The regular expression works too. Problem is, the message does not display. I've tried the following: * Changing the Display attribute to …

Member Avatar for Jinspire
0
102
Member Avatar for Jinspire

Greetings, one and all! I'm new here, as you can see. ... ...Wow, it sure is funny how my mind goes blank the moment I stand up to speak before a crowd!:sweat: Anyway, it's great being here. Hope I get the chance to contribute as well as receive help!

Member Avatar for ruby.mein
0
43
Member Avatar for Jinspire

Here is the code I used: [code=c#] using system; using system.Management; using system.Management.Instrumentation; using system.Security.AccessControl; namespace Permissions { public static int Main(string[] args) { string strFolderPath = "c:\\Program Files\\Whaddeva\\"; string strUserName = "user@domain"; AddDirectorySecurity(strFolderPath, strUserName, FileSystemRights.FullControl, AccessControlType.Allow); } public static void AddDirectorySecurity(string Filename, string Account, FileSystemRights Rights, AccessControlType ControlType) { …

Member Avatar for sknake
0
137
Member Avatar for Jinspire

Hi, I'm trying to write a c# program which checks which user is logged on to a remote machine. I have the machine name, the user name and - last but not least - administrative permission. The only thing I've managed to find on the web is [code=c#]if (Environment.UserName == …

Member Avatar for Sodabread
0
134