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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

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

    Is there some new .NET-approved way

    Is there some new .NET-approved way to get the color of a pixel in a window (a window external to my program). In VB6 I would do something like this using API functions: GetCursorPos p hwnd = WindowFromPoint(p.x, p.y) deskhdc = GetDC(hwnd) rgbVal = GetPixel(deskhdc, p.x, p.y) retval =...
  17. Jerrycurl

    &quot;Cannot edit this cell&quot;. Why?

    If anyone's interested, we've talked to Microsoft about this and they have confirmed that it is a bug. Apparently is was introduced in SP1 because it does not happen in the RTM build. In order to rectify the situation, I set up a test server with the proper collation (Latin1_General_CI_AI)...
  18. Jerrycurl

    component not registered

    I know this has been asked before, and it's even in the MS KB (Q289493), but I just can't believe what it's telling me. My office just upgraded (almost) all of our users' computers to Windows 2000. I went around to all of them and installed my VB program (with the setup made by PDW) while...
  19. Jerrycurl

    &quot;Cannot edit this cell&quot;. Why?

    I did it all the time, too. It must be some kind of side effect of our upgrade to 2000.

Part and Inventory Search

Back
Top