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

    Problem with SmtpMail.Send()

    Alright then, here's where it gets weird. I can't go back to the golden days of my VB time... My box is running XP and IIS 5.1, meaning that all of my preexisting code that utilized CDO NTS will no longer work, as now I have to utilize the CDOSYS object. Even using the Send() method and...
  2. schwank

    Problem with SmtpMail.Send()

    Actually, I did a cursory search yes. The kicker is that pretty much the same code(was exe, now dll) code sent out a 10000 mail blast to our mail list two weeks ago. The only two things I can figure out that have changed are IIS and running the IIS Lock Down tool. I made sure IIS lock down...
  3. schwank

    Problem with SmtpMail.Send()

    I built a C# assembly that contains functionality to send mail messages. I have done this several ways in C# before no problem. But this time I am getting an error with sending the actual message. Stack trace: at System.Web.Mail.LateBoundAccessHelper.CallMethod(Object obj, String methodName...
  4. schwank

    Using COM in JavaScript

    Can anyone point me to a reference regarding how to instantiate and manipulate COM opjects using JavaScript. I have a client who wants to do so, and would be interested in learning how to do so myself. Thanks for you help.
  5. schwank

    Simple Async function execution

    I have read all the msdn and viz studio docs on asynchronous method calls. Is there a way to just simply call a method async without callbacks? I just want to call a function that sends out a ton of mail, and don't care about any return values. Thanks.
  6. schwank

    Using namespace in virtual directory(sub-dir)

    I have an application with a two virtual directories... one parent directory for anon access, and a sub directory set up as a virtual dir in IIS for purposes of Forms Authentication. Only problem is, my SQL ConnString is stored as a global var in the global.asax file of the parent... no matter...
  7. schwank

    multitable SELECT question

    Awesome rac2... I really appreciate it! You just made my life quite a bit easier... Thanks.
  8. schwank

    multitable SELECT question

    This would work just fine... but I would like to get this result set: int event_id varchar() name1 varchar() name2 varchar() name3 ... All of the joins I have tried give me crazy result sets. Your result set for select events.*,att.name from events join attendee att on events.attendee_idx =...
  9. schwank

    multitable SELECT question

    Been a bit since I wrote any difficult SQL...so bear with me! I am storing one record in an events table like so: prim_key id int attendee_id1 int attendee_id2 int attendee_id3 ... the attendee table is: prim_key id varchar name ... I would like to return a single dataset containing all of...

Part and Inventory Search

Back
Top