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#"...
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=...
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)
{...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.