Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Jerrycurl

  1. Jerrycurl

    Excel cell text overhangs column edges

    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...
  2. Jerrycurl

    "Enter network password" popup. Why?

    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.
  3. Jerrycurl

    "Enter network password" popup. Why?

    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...
  4. Jerrycurl

    CreateMailbox() won't work

    Yikes! That was almost 3 years ago. I can't find any .Net source code for this, so I think I must have ended up doing it in VB6. Sorry.
  5. Jerrycurl

    On-demand subreport that displays on same page?

    But that would show the subreport for everyone. I only want the subreport to be visible for those group headings that the user clicks on.
  6. Jerrycurl

    On-demand subreport that displays on same page?

    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...
  7. Jerrycurl

    Validator within a Repeater problem

    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)...
  8. Jerrycurl

    Anyone know how to check rules in an event sink?

    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...
  9. Jerrycurl

    event sink - how to save incoming mail to a specific folder

    Just giving this thread a bump, as I have the same question.
  10. Jerrycurl

    Strange For loop problem

    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(&quot;n&quot;, 30, x) Loop This works, though: x = starttime Do While...
  11. Jerrycurl

    Strange For loop problem

    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 = &quot;5:00:00 AM&quot; endtime = &quot;8:00:00 AM&quot; For x = starttime To endtime Step...
  12. Jerrycurl

    CreateMailbox() won't work

    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(&quot;LDAP://server.domain.net/cn=users,dc=domain,dc=net&quot;, &quot;administrator&quot;, &quot;password&quot;)...
  13. Jerrycurl

    CreateMailbox() won't work

    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(&quot;LDAP://server.domain.net/cn=users,dc=domain,dc=net&quot;, &quot;administrator&quot;, &quot;password&quot;)...
  14. Jerrycurl

    Do I have to buy a certificate in order to sign my code?

    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...
  15. Jerrycurl

    Do I have to buy a certificate in order to sign my code?

    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...

Part and Inventory Search

Back
Top