User Jeremy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T19:20:02Zhttp://stackoverflow.com/feeds/user/8557http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1155935/what-is-an-ipm-distlist0What *is* an IPM.DistList?Jeremy2009-07-20T21:01:30Z2009-08-07T12:48:19Z
<p>I'm trying to get the recipient addresses within an IPM.DistList that is stored in a public folder (of type contacts) in Exchange 2003. The typeName of the object (once I get hold of it) is a Message (with a parent object being a Messages collection) and the messageType is "IPM.DistList". </p>
<p>I can find all sorts of things about IPM.DistListItems, which you would think an IPM.DistList would contain, but there apparently isn't any documentation on the DistList (that I can find) and DistListItems documentation lists no parent possibilities in MSDN.</p>
<p>I'll state it another way in case I've left you confused:</p>
<p>We have an Exchange 2003 info store with Public Folders. Within those Public Folders is a [sub]folder (that holds items of type "Contact") that has a bunch of distribution lists (IPM.DistList's) that have contact entries, members of the list essentially.</p>
<p>I need to get the addresses of the members of the lists in the Public Folder sub-folder using any VB language, because the company I work for hired me as a VB guy and expects me to write VB solutions, even though I could do it in C++... alas, I digress. VB is the language I'm supposed to figure this out in. (.net, script, vba, vb6, it doesn't matter which one. Yes, I know vb.net is not really related to those that came before, but they don't know that.)</p>
<p>Anyone ran into anything like this? Am I just not finding the IPM.DistList documentation but it does actually exist somewhere? This isn't a Message.MAPIOBJECT (iUnknown) problem is it?</p>
<p>Thanks....</p>
<p>Jeremy</p>
http://stackoverflow.com/questions/180303/what-is-the-best-virtual-grid-for-winforms-csharp/701174#7011740Answer by Jeremy for What is the best virtual grid for Winforms CsharpJeremy2009-03-31T14:16:04Z2009-03-31T14:16:04Z<p>Xtra Grid from DevExpress is good, but the learning curve is steep (for master-detail, anyway). We like it better than any other that we have tested. The price isn't obscene like some other packages.</p>
http://stackoverflow.com/questions/66172/krypton-controls-anyone4Krypton Controls anyone?Jeremy2008-09-15T19:47:43Z2009-03-22T18:45:17Z
<p>I found the ad on this site to Krypton controls (and here's another one! http://www.componentfactory.com) and was wondering if any of you using vs.net 05 or 08 are using them and how that's working out. If you're answering, please specify which parts you're using (free, ribbons, tabs) and which vs.net you're on, which language(s) you use, along with pros and cons. I know there are probably better suites out there that you may be fond of, but this question is specifically about Krypton controls. We'd be using it with vb.net, .net 3.5, 08, so I'm particularly interested in hearing about your experience in those areas. (I've watched all the screencasts)</p>
http://stackoverflow.com/questions/113423/good-secure-backups-developers-at-home/113483#113483-3Answer by Jeremy for Good Secure Backups Developers at HomeJeremy2008-09-22T06:35:59Z2008-09-22T06:35:59Z<p>mozi</p>
<p>www.mozi.com</p>
<p>free 2gb for home users. plenty for docs. $4.95/mo for unlimited home backups.</p>
http://stackoverflow.com/questions/106175/vs-vb-net-how-to-get-the-instance-used-by-a-with-statement-in-the-immediate-wind/106308#1063080Answer by Jeremy for VS/vb.net: How to get the instance used by a With statement in the immediate windowJeremy2008-09-19T23:09:35Z2008-09-19T23:09:35Z<p>You're creating a variable either way - in the first case (your example) the compiler is creating an implicit variable that you aren't allowed to really get to, and the in the second case (another answer, by Oli) you'd be creating the variable explicitly. </p>
<p>If you create it explicitly you can use it in the immediate window, and you can explicitly destroy it when you're through with it (I'm one of the memory conscious, I guess!), instead of leaving those clean up details to the magic processes. I don't think there is any way to get at an implicit variable in the immediate window. (and I don't trust the magic processes, either. I never use multiple-dot notation or implicit variables for this reason)</p>
http://stackoverflow.com/questions/106275/how-to-get-a-distinct-list-of-words-used-in-all-field-records-using-ms-sql/106280#1062800Answer by Jeremy for How to get a distinct list of words used in all Field Records using MS SQL?Jeremy2008-09-19T23:02:41Z2008-09-19T23:02:41Z<p>it'd be a messy stored procedure with a temp table and a SELECT DISTINCT at the end.</p>
<p>if you had the words already as records, you would use SELECT DISTINCT [WordsField] from [owner].[tablename]</p>
http://stackoverflow.com/questions/96840/real-world-problems-with-naive-shuffling/96854#968541Answer by Jeremy for Real-world problems with naive shufflingJeremy2008-09-18T20:54:57Z2008-09-18T20:54:57Z<p>Subjective.</p>
<blockquote>
<p>It seems like it would be infinitesimally small.</p>
</blockquote>
<p>Agree.</p>
http://stackoverflow.com/questions/89710/what-fundamental-skills-are-needed-for-programming/89738#897382Answer by Jeremy for What fundamental skills are needed for programming?Jeremy2008-09-18T03:27:11Z2008-09-18T03:27:11Z<p>problem solving- ability to hang in there when the problems get hard. I don't think it has anything to do with algebra- I failed algebra. When I run into math I can't figure out (a recent problem on linear interpolation, for example), I just find the nearest SME and let them figure it out and get back to me. (I can do linear interpolation now, though!)</p>
http://stackoverflow.com/questions/89465/cscript-wscript-prevent-an-error-from-being-blocking/89715#897151Answer by Jeremy for CScript/WScript Prevent an error from being blockingJeremy2008-09-18T03:22:49Z2008-09-18T03:22:49Z<p>don't do this:</p>
<p>vbscript:
On error resume next</p>
<p>english:
"when you have an error, ignore it and just keep going."</p>
http://stackoverflow.com/questions/89663/approve-usb-device-after-insertion/89682#896821Answer by Jeremy for Approve USB device after insertionJeremy2008-09-18T03:13:17Z2008-09-18T03:13:17Z<p>No. You can restrict access to removable media using GPO, but you can't specify what kind of files are allowed on the removable media or if they can execute or not.</p>
<p>EDIT: upvoting thomas. better answer than mine.</p>
http://stackoverflow.com/questions/89606/in-sql-server-2005-how-do-i-change-the-schema-of-a-table-without-loosing-any-d/89664#896643Answer by Jeremy for In sql server 2005, how do I change the "schema" of a table without loosing any data?Jeremy2008-09-18T03:06:38Z2008-09-18T03:06:38Z<p>simple answer</p>
<pre><code>sp_changeobjectowner [ @objname = ] 'object' , [ @newowner = ] 'owner'
</code></pre>
<p>you don't need to stop all connections to the database, this can be done on the fly.</p>
http://stackoverflow.com/questions/69576/why-are-software-requirements-always-phrased-with-shall-instead-of-will/69682#696820Answer by Jeremy for Why are software requirements always phrased with "shall" instead of "will"?Jeremy2008-09-16T05:55:28Z2008-09-16T05:55:28Z<p>In the National Electrical Code </nonprogramming></formerlife>, they use "Shall" to indicate a kind of importance, a lack of an option or alternative. You Shall do it this and such way, there is no other way to do it, if you don't do it the way we said here then you got it wrong. Shall suprecedes everything else (usually even the "exceptions"). Like someone else said, it comes from a legal background. </p>
<p>"can", "may" are used to indicate you have a choice in the matter, "shall" means you don't get any say; that's just they way IT SHALL BE DONE. ;)</p>
http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/69667#696671Answer by Jeremy for How do I programmatically create a PDF in my .NET application?Jeremy2008-09-16T05:50:10Z2008-09-16T05:50:10Z<p>We're using pdftron. works. not free.</p>
http://stackoverflow.com/questions/54808/how-to-best-merge-information-at-a-server-into-a-form-a-pdf-being-generated/69603#696030Answer by Jeremy for How to best merge information, at a server, into a "form", a PDF being generated as the final outputJeremy2008-09-16T05:30:48Z2008-09-16T05:47:48Z<p>Same boat. We're currently making pdfs this way: vb6 app drops a record into sql (with filename, create date, user, and final destination) and the xls (or doc) gets moved into a server directory (share) and the server has a vb.net service that has a filewatcher monitoring that directory. The file shows up, the service kicks off excel (word) to pdf the file via adobe, looks to sql to figure out what to do with the PDF when it is made, and logs the finish time. </p>
<p>This was the cheap solution- it only took about a day to do the code and another day to debug both ends and roll the build out.</p>
<p><strong>This is not the way to do it.</strong> Adobe crashes at random times when trying to make the pdfs. it will run for two weeks with no issues at all, and then (like today) it will crash every 5 minutes. or every other hour. or at 11:07, 2:43, 3:05, and 6:11. </p>
<p>We're going to convert the stuff out of excel and word and drop the data directly into pdfs using PDFTron in the next revision. Yes, PDFTron costs money, (we bought the 1-kilobuck-per-processor license) but it will do the job, and nicely. XPS are <em>nice</em> but I, like you, have to provide PDFs. It is the way of things.</p>
<p>Check out pdfTron (google it) and see if it will do what you want. Then you just got to figure out which license you need and how you gonna pay for it. If someone comes up with something better, hope they'll vote it to the top of the list!!!</p>
http://stackoverflow.com/questions/64839/visual-studio-2008-is-it-worth-the-upgrade-from-2005/65012#650120Answer by Jeremy for Visual Studio 2008: Is it worth the upgrade from 2005?Jeremy2008-09-15T17:41:00Z2008-09-15T17:41:00Z<p>I'd upgrade, but set aside some time for the install process. It took two hours on my moderately fast dev workstation, and I'm still doing updates, patches, hotfixes, two hours after the install finished... (haven't gotten any "real work" done today at all!)</p>
http://stackoverflow.com/questions/64599/net-system-web-mail-vs-system-net-mail/64960#649601Answer by Jeremy for .net: System.Web.Mail vs System.Net.MailJeremy2008-09-15T17:32:12Z2008-09-15T17:32:12Z<p>The few times I ran into this, I found that that the methods and properties were all almost identical- changing the object type was just about all I had to do. There were one or two other little things, but they showed up with the lines and it was obvious what to do with Intellisense. I'd vote for going with the fully managed solution, get away from cdonts as soon as possible. It's not even installed on 03 server and newer.</p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64456#6445621Answer by Jeremy for Confessions of your worst WTF Moment. (What not to do.)Jeremy2008-09-15T16:31:30Z2008-09-15T16:31:30Z<p>Told wife the dress made her look fat. :)</p>
<p>No, really... I changed some value in sql 6.5 that told it how much memory to use. But the box was for <em>physical</em> memory, and I put in an amount more than the machine actually had installed. "You must restart the service for this change to take effect" which I did. At 1am, on a <em>production</em> server, and I didn't check the backups, which had been failing btw... anyway, the service wouldn't restart because it couldn't allocate the memory, and I couldn't change the setting because I couldn't connect to the server object because it wasn't running because it couldn't start because the value was wrong and I couldn't change it because, well, you can see the loop here... </p>
<p>$249 to mss and an hour on the phone with a Guru and we found the registry setting. I finally got to bed at about 4am...</p>
http://stackoverflow.com/questions/1171769/when-should-i-use-stored-procedures/1172077#1172077Comment by Jeremy on When should I use stored procedures?Jeremy2009-07-23T14:25:32Z2009-07-23T14:25:32ZIf you have "50 webservers" I'd hope you have at least one DBA. Who happens to know TSQL. Which is what stored procedures are written in. There isn't anything messy about it- what is messy is not using store procedures.http://stackoverflow.com/questions/1171769/when-should-i-use-stored-procedures/1171780#1171780Comment by Jeremy on When should I use stored procedures?Jeremy2009-07-23T13:59:07Z2009-07-23T13:59:07Z"database assembly language"?? That's ridiculous. It's the <i>same_language</i> -- transact-sql. I'm not advocating splitting business logic between the middle tier and the data layer- but your middle tier should be using SPs exclusively to deal with the data. It's a performance thing, unless you're using some crappy rdbms that doesn't precompile store procedures. I'd like to hear one single "Serious Downside". http://stackoverflow.com/questions/1171769/when-should-i-use-stored-procedures/1171836#1171836Comment by Jeremy on When should I use stored procedures?Jeremy2009-07-23T13:51:56Z2009-07-23T13:51:56Z<i>well</i> documented performance and security benefits. Just wanted to restate that. We do not put TSQL in applications, EVER. The SQL goes in a stored procedure, the procedure is called from code. No code ever touches even so much as a select statement. Running an SP or not is the difference between pre-compiled and interpreted code- which one do you prefer? The answer to your question is "ALWAYS". http://stackoverflow.com/questions/371/how-do-you-make-sure-email-you-send-programmatically-is-not-automatically-marked/61650#61650Comment by Jeremy on How do you make sure email you send programmatically is not automatically marked as spam?Jeremy2008-09-19T23:00:18Z2008-09-19T23:00:18Zthis is a question, not an answer.
(and you use different ip addresses for the mail server in that case.)