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 Chriss Miller 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: *

  • Users: jmeckley
  • Content: Threads
  • Order by date
  1. jmeckley

    good reference material

    I'm proficient with .Net, but my PS skills are lacking. I can fumble my way through a script, but it's tedious. I'm looking for a book/website that will help me grok how and why PS works. Not just examples of "do this or that". But understanding the core of PS. I have the book "CLR via C#"...
  2. jmeckley

    configure windows service password containing non-alphanumerics

    I'm a .net developer spending most of my time inside VS. I want to automate my deployment process and working on a script to deploy a windows service. I need to be able to configure the account/password which runs the service. so far I have sc config MyService obj= domain\account password=...
  3. jmeckley

    Assistance with Generics

    This is escaping me, and I don't work with metadata enough to connect the dots. here is the setup interface IListener<T> { void Handle(T message); } class Presenter : BaseClass , IAnotherInterface , IListener<This> , IListener<That> { public void Handle(This message) {...
  4. jmeckley

    Select # and Use statments

    I have a FP 2.5a system. for the most part it runs without any major problems. The system runs on virtual Windows 98 machines. the files and tables are on the network (WS2K3) and foxpro is local on the 98 machine. Lately the system will hang if we try to print invoices (a report). I haven't...
  5. jmeckley

    SmtpFailedRecipientException Mailbox unavailable Could Not Relay

    I'm trying to debug a configuration issue. here is the scenario. from ASP.Net I want to send a email to an external domain. example: from foo@foo.com, to bar@bar.com. My email server is Exchange. If I do not use any credentials var message = new MailMessage { From = new...
  6. jmeckley

    Read Paragraph of Text from MS Word

    I'm spiking a proof of concept that will extract a paragraph of text from a MS Word document. Having no experience with Office Interops I have been able to piece together the following object missing = Missing.Value; object doNoSaveChanges = WdSaveOptions.wdDoNotSaveChanges; object...
  7. jmeckley

    CQRS by Udi

    I watched a great presentation this morning by Udi Dahan on command query responsibility separation. In it he covers: 1. the history of electronic UI/storage 2. what users expect today 3. why most of our design concepts have not evolved to match the business need. The biggest idea turned on...
  8. jmeckley

    Lost intelisense in web.config and other xml files

    This isn't related to c#, but there isn't a VS forum. some time last week I lost my color coding and intelisense in my app/web.config files and NHibernate mapping files. instead of the red/blue text coloring with XSD support of nodes/attributes I get black text on white background. it treats it...
  9. jmeckley

    New Forum for MVC

    If you didn't notice this forum has been renamed to Microsoft: ASP.NET Webforms Forum. This decision was made after some discussion about whether Webforms and MVC should be in the same forum. The site maintainer(s) thought there is enough difference between the 2 approaches to web development...
  10. jmeckley

    Food for thought

    While karl's Webforms Rant starts off strong and ends strong, the body gets a little whiny. I post it here because I'm convinced most .net devs don't realize there are alternatives to webforms. I do agree with karl's point (albeit the delivery is weak). Webforms will always be more complicated...
  11. jmeckley

    Have you heard of TekPub?

    Apparently the site was just launched this week. Rob and James are producing regular content to help developers hone their craft. They appear to be covering anything from concepts and patterns to specific frameworks and tools. Right now they are focusing on .net technologies as this is there...
  12. jmeckley

    Database Connection Management FAQ

    faq855-7190. I'm open to feedback as to whether you find this useful, confusing, or absurd. Jason Meckley Programmer Specialty Bakers, Inc.
  13. jmeckley

    Great Aggregation on SOLID Design Principles

    Pablo's S.O.L.I.D. principles ebook slants towards .net, but the concepts are universal. Jason Meckley Programmer Specialty Bakers, Inc.
  14. jmeckley

    procs vs dynamic sql

    this has absolutely nothing to do with asp.net or associated environments. but the topic has been scratched is a few different post. It's not really a helpful tip either, but I figured the light bulb is a better choice than the question mark. I'm of the opinion that procs should be avoided as...
  15. jmeckley

    formula for the group footer.

    currently I have the following formula in my report footer numberVar total; if({source.year} = {@current_year}) then total := total + {source.january}; total; this is duplicated for each month. I also need to include something similar in group#1 footer. i have tried numberVar total...
  16. jmeckley

    API to configure report at runtime

    c# .net 3.5 I'm trying to find a better (automated) way to define formulas and formatting when designing reports. I'm trying to find a way to access the Font Color selection formula. I can set the color, that's easy. But I need to be able to set the color using a conditional statement. I could...
  17. jmeckley

    how do I parse a date from json?

    i'm finally getting serious about client side code. using jquery as my framework. I have an ajax request returning json. all is great, except dates are strings (example [\/Date(1198904400000-0500)\/]), not dates. googling shows this is expected. what I haven't found is a way to parse the json...
  18. jmeckley

    Confused by Security Exception

    scenario. 1. user places csv file in directory 2. user runs console app 3. console app modifies csv, then loads csv into db the app runs fine locally, but on the shared drive I get the following exception. The appears to be happening when attempt to overwrite the file. the only people using...
  19. jmeckley

    procedure executes without being called

    Disclaimer: My FoxPro 2.5 skills are weak at best, it's been over 2 years since I last worked with this language. And the last time was the first time I ever programmed in FoxPro. I'm a c# dev most of the time. on to the problem... I have a de-normalized table. where there are a series of...
  20. jmeckley

    Architecture Pardigm Shift

    jeffrey palermo has started a great series on what he dubs the Onion Architecture part 1 part 2 I love that someone was able to put this into words which can be digestable to the masses. I found the most meanful nugget is the idea that a database is an infrastructure detail; not part of the...

Part and Inventory Search

Back
Top