A friend of mine has an Excel file that she says used to look right until someone installed some things on her computer, and now it doesn't look the same. The problem is that the text in some of the rows overlaps the left and right edges of the cell (the text is centered). This only happens in...
The ASPNET account has "Read & Execute", "List Folder Contents", and "Read" permissions on the wwwroot folder and the v2.0.50727 folder. And my ASP.net 1.1 application runs ok and it's on the same web server. It seems to just be a 2.0 issue.
I recently installed ASP.net 2.0 and was playing around with it yesterday. I created a web page on my local machine and everything was working fine. I published it to a web server on our network and that worked fine. Then I did *something*, I don't know what, and now when I try to load the...
I would like the user to be able to click on a group heading to show/hide the details section for that group. The problem is that when I configure the details section for drill-down, the drilled-down subreport appears on it's own page. I would like it to appear within the current page...
I have a textbox and a button within a repeater. The OnItemCommand sub of the repeater looks like this:
Sub RepeaterButtonSub(ByVal source As Object, ByVal e As RepeaterCommandEventArgs)
Dim RejectTxt As TextBox = CType(e.Item.FindControl("txtRejectNote"), TextBox)...
I have an event sink that moves spam into the user's junk folder. The problem is that I want to check if the user has created their own rule to handle spam, and if so, not do anything. The easy ways to deal with rules programatically all seem to use CDO. As far as I can tell, CDO requires you...
Wow, that's really ridiculous. Even using the date specific function DateAdd gives the wrong result:
x = starttime
Do While x <= endtime
Debug.Print x
x = DateAdd("n", 30, x)
Loop
This works, though:
x = starttime
Do While...
Put a button on a form and add this code in the click event:
Private Sub Command1_Click()
Dim x As Date
Dim starttime As Date
Dim endtime As Date
starttime = "5:00:00 AM"
endtime = "8:00:00 AM"
For x = starttime To endtime Step...
I'm writing code to add a user to the Active Directory and create an Exchange mailbox for that user. Here's what I have:
Try
Dim de As New DirectoryEntry("LDAP://server.domain.net/cn=users,dc=domain,dc=net", "administrator", "password")...
I'm writing code to add a user to the Active Directory and create an Exchange mailbox for that user. Here's what I have:
Try
Dim de As New DirectoryEntry("LDAP://server.domain.net/cn=users,dc=domain,dc=net", "administrator", "password")...
Thanks for the reply. Another question: Is there no way for the network admin to add a certificate made with selfcert to the trusted certificate pool? The article at
http://www.microsoft.com/technet/treeview/default.asp?url=/technet/columns/security/5min/5min-402.asp
says...
I have some macro-containing Excel sheets that will be distributed to all the employees in my office. I don't want the users to get the warning about macros when they open the file. Signing my code with a certificate seems like the way to accomplish this. I've created a certificate with the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.