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

    Outlook 2007 cannot access calendar shared with a group

    We are running Exchange Server 2003. I want to be able to share my calendar with all members of an Active Directory distribution group. I configured my calendar share permissions to grant the distribution group Reviewer access. Users running Outlook 2010 can see it just fine. However, those...
  2. chpicker

    User1 doesn't receive mail if User2 is also in recipient list

    One of my clients called a few weeks ago to tell me that one of their users (User1) sometimes doesn't receive mail addressed to her. After a whole bunch of trial and error, I determined that it happens whenever another specific user (User2) is also included in the recipient list. User2...
  3. chpicker

    sp_dbmail_send - odd behavior when specifying mulitple recipients

    I have SQL Server 2005 (Enterprise version 9.0.3042) configured for Database Mail. It is using our company's SBS Exchange 2003 server (version 6.5 build 7638.2: SP2) to send mail. The profile is configured to use my login credentials, but the "from" and "reply-to" are for a distribution group...
  4. chpicker

    SQL2005 "Profile name is not valid" when trying to send email

    Thanks for the advice. I'm new to SQL stored procedures; I'm used to programming in C and BASIC. It never occurred to me that the order of parameters wouldn't matter!
  5. chpicker

    SQL2005 "Profile name is not valid" when trying to send email

    Ugh...turns out I messed up the parameters. The code I posted above was from memory, not verbatim. The parameters are in the wrong order. I added their names to the code and now it works again.
  6. chpicker

    SQL2005 "Profile name is not valid" when trying to send email

    I configured a SQL Server to send email on Friday. It was working just fine. The "Send test email..." selection in Management Studio worked, as did this: exec msdb.dbo.sp_send_dbmail 'user@contoso.com','Test body','Test subject','TestProfile' As of today, the above code no longer works. It...
  7. chpicker

    Virus file and registry keys are locked down

    Thanks for the tips, guys. I suppose it might have been beneficial to point out that I don't have physical access to this computer. It's not even in the same state. That said, it looks like my best option is going to be either Unlocker or Killbox at this point. I had already tried running...
  8. chpicker

    Virus file and registry keys are locked down

    One of my clients has a WinXP machine that was infected with a version of the Pandex trojan. All of the research I've done leads me to a single file and a series of registry keys that all need to be deleted. The problem is, I can't. The file (c:\windows\system32\drivers\ekp62.sys) gives me...
  9. chpicker

    Large files fail to upload with no error

    Yeah, I always keep a phpinfo() script on my server when I'm doing dev work. The line you're looking for is this one: post_max_size = 8M. I bumped that up to 50 and the upload works fine now. Thanks! The part that bugs me is...why can't PHP at least pop a notice or warning that the max size...
  10. chpicker

    Large files fail to upload with no error

    I have a very simple PHP script. Here is its current code: <?php if (isset($_POST["Submit"])) { if ($_FILES["inputfile"]["error"]==0) { echo "<PRE>"; $fp=fopen($_FILES["inputfile"]["tmp_name"],"r"); $line=0; while (!feof($fp)) {...
  11. chpicker

    Clicking BACK to a GridView that was sorted

    I have a page with a GridView. This grid allows you to sort it by clicking on column headers, it is paginated so it shows only 15 rows per page, and each row contains a DETAILS link that goes to another URL. The problem occurs when a user sorts the grid by date, clicks through the pages to...
  12. chpicker

    Variable number of radio buttons in a gridview

    Yes! Jason, you are a life-saver. I've been trying to find the right combination of properties for days now. Thanks a ton! Adam, I do appreciate the input, but I actually clipped that code from a MUCH longer and more complicated page. The code that I put in Page_Load is actually in a custom...
  13. chpicker

    Variable number of radio buttons in a gridview

    Well, I was successful in getting the questions to display correctly. But I still can't figure out how to retrieve the selected answers. Here's what I have: Default.aspx <asp:GridView ID="gvQuestions" runat="server" AutoGenerateColumns="false"> <Columns> <asp:TemplateField>...
  14. chpicker

    Variable number of radio buttons in a gridview

    I've been fighting ASP over this problem for a week now and I just can't figure out how to do it. I'm using a GridView as an example. I don't strictly need to use it; I could use any of the other data display controls if you think that would work better. GridView is what I've been trying to...
  15. chpicker

    A secure way to read ASP session variables from ASP.NET

    There are many valid reasons for wanting to have a classic ASP web application and an ASP.NET application share the same session. You may be migrating a large one over to ASP.NET and need to convert it in stages. You may be tasked with adding a new ASP.NET module to an existing ASP page...
  16. chpicker

    Cookies collection bug?

    So, the strings in the collection are the NAMES of the cookies? That should get me what I need. Thanks!
  17. chpicker

    Cookies collection bug?

    Can anyone explain to me why this code does not work in VB.NET? For Each myCookie As[/color blue] HttpCookie [COLOR=blue]In HttpContext.Current.Request.Cookies This line gives a Server Error: Unable to cast object of type 'System.String' to type 'System.Web.HttpCookie'. If I change it to "As...
  18. chpicker

    Syntax help: pointer to an array as a class member

    Thanks for the replies. The main reason I don't use vectors (or any other STL constructs) is that I don't really understand them yet. I come from a QuickBASIC background; a lot of the old habits are hard to break, and the familiar is easy to use.
  19. chpicker

    Syntax help: pointer to an array as a class member

    I want to create a class with a member that is an array whose size is determined at runtime. Does this work to create and destroy the array? I always have trouble keeping track of pointers to arrays, arrays of pointers, and the syntax involved in each. class MyClass { public: MyClass(int...
  20. chpicker

    Updatable subscriptions just won't work (No transaction is active)

    Yeah; it was a test platform to begin with, so nothing was really lost, but this has taken over a week already and I've gotten nowhere.

Part and Inventory Search

Back
Top