Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

StevenWalsh

@StevenWalsh
About
Posts
339
Topics
22
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Subtle SQL Error
    S StevenWalsh

    you have an entire table for what is essentially 1 column?

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    Clever Code csharp database help question

  • Percent-decoding a URL
    S StevenWalsh

    not if its a StringBuilder

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Weird and The Wonderful question

  • I am Offended
    S StevenWalsh

    it will stop, but only beacuse your email is gone.... because you are gone.

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge com debugging question

  • What I like about Apple's Developer documentation over MSDN
    S StevenWalsh

    my favorite aspect of MSDN is the way google is the best method for searching it :)

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge html css com sales tutorial

  • Rolling Sums
    S StevenWalsh

    ahhh stupid me, forgot about fetch

    DECLARE SalesYearCursor CURSOR FOR
    SELECT * FROM #tmpSalesYear

    OPEN SalesYearCursor
    
    FETCH NEXT FROM SalesYearCursor
    INTO @Percent,@xxxxx,@xxxxx,@xxx
    
    WHILE @@FETCH\_STATUS = 0
    BEGIN
    	SET @Current = @percent + @previous
    	SET @previous = @Current
    
    	UPDATE #tmpSales SET Roll = @Current
    	WHERE Percentage = @percent
    	AND SalesYear = @year
    	
    	FETCH NEXT FROM SalesYearCursor
    	INTO @Percent,@xxxxx,@xxxxxx,@xxxxxx
    END
    
    CLOSE SalesYearCursor
    

    DEALLOCATE SalesYearCursor

    EDIT: removed names that identify business :)

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    Database question

  • Rolling Sums
    S StevenWalsh

    I have a table that looks like this:

    11
    28
    18
    .
    .
    .

    i'm trying to roll up the values so it would take the value and add it to the previous sum of all the rows above it

    11
    39
    57
    .
    .
    .

    I am having the hardest time, any ideas?

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    Database question

  • Windows 7
    S StevenWalsh

    is this guy judging the performance of the OS based on how many threads its using?

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge java javascript html com sysadmin

  • A sad day
    S StevenWalsh

    NOOOOOOOO[^]

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge c++ com architecture

  • Word templates for ITIL?
    S StevenWalsh

    ITIL is a way for large corporations to keep MBA's in business.

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge wpf question learning

  • [Message Deleted]
    S StevenWalsh

    I'd suggest Miller or Red stripe then :)

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    C#

  • Building a 3D engine [modified]
    S StevenWalsh

    Hey i never knew about that, really cool!

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge csharp architecture html wpf com

  • Building a 3D engine [modified]
    S StevenWalsh

    From my experience OpenGL has always been the quickest to get something up and working, however that is C++ so it may not fit your purposes. Though its been several years since i've touched Direct X, and I Know they've made quite a few significant changes so it might be something worth wild to look into.

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge csharp architecture html wpf com

  • Going with Virtual Machines. Which and When?
    S StevenWalsh

    VMWare will have the better performance most likely, but as john mentioned your hardware is quite lacking, and i say this as a guy who spent the last year working on a virtualization platform based off virtual server (which is based off virtual pc) on a side note, some of my testing with the new Hyper V, really impresses me :) i'm very excited for the direction it is going. Although i will rant about the fact that they took away my interop dll for the COM interface, and replaced with WMI (which makes C# programming super difficult in comparison) but they made up for it when i saw what the new Hyper Call library is capable of!!

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge performance question c++ asp-net linux

  • [Message Deleted]
    S StevenWalsh

    Is there a LISP.NET yet? if so i choose that

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge

  • this (another C# programmer rant)
    S StevenWalsh

    i use letters all the time for couters in a for loop, do you hate that?

    for(int i = 0; i < this.k; i++){
    MarcClifton.Anger++;
    }

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge csharp visual-studio com question

  • Do all programmers suffer from OCD?
    S StevenWalsh

    In my opinion Autism is the new popular diagnosis, much like ADD was in the 90's (Its almost impossible to know for sure, but there were countless kids who were prescribed riddlin that most likely did not need it)

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge tutorial question

  • Do all programmers suffer from OCD?
    S StevenWalsh

    It's really not an issue until it becomes maladaptive. If you were late to work because you needed to go home because you can only remember checking your house lock twice.. then it might be an issue.

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge tutorial question

  • The Loop
    S StevenWalsh

    looks like code that at one time did something, but then got changed but never cleaned up

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Weird and The Wonderful

  • Something to bring a smile to Newcastle United fans
    S StevenWalsh

    I saw the title, and thought oh yay a post about Beer!! but alas i was wrong :(

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge php html com tools question

  • Are we, as Developers, bored?
    S StevenWalsh

    How could people have missed SQL 2008... It has Upsert!!

    Einstein argued that there must be simplified explanations of nature, because God is not capricious or arbitrary. No such faith comforts the software engineer. -Fred Brooks

    The Lounge csharp c++ database sql-server com
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups