Author Topic: Who?  (Read 11570 times)

0 Members and 1 Guest are viewing this topic.

Offline UOMaddog

  • Maddog
  • Elite
  • *
  • *
  • Posts: 1625
  • Activity:
    0%
  • Reputation Power: 22
  • UOMaddog might someday be someone...UOMaddog might someday be someone...UOMaddog might someday be someone...UOMaddog might someday be someone...
  • Gender: Male
  • Biggest B@D@$$ of the Universe
  • Respect: +165
  • Referrals: 8
    • View Profile
    • Insane UO
Re: Who?
« Reply #15 on: March 19, 2011, 08:31:24 PM »
0
Any one of you C# guru's want to write up a web service for me?? All my previous web services have been done in Java, but our new client runs everything on Windows Server 2008 (64) with IIS 7.0 so we need a web service in C# to run on it. Basically just consume requests, query a SQL database, and spit back the responses. Very basic, but it's been forever since I've done anything in C (or C++/C#)

I can probably even get you a paycheck for it!!

PM me if interested!
There are 10 kinds of people in this world: those that understand binary and those that don't!

Windows:  A 64-bit tweak of a 32-bit extension to a 16-bit user interface for an 8-bit operating system based on a 4-bit architecture from a 2-bit company that can't stand 1 bit of competition!

Offline foobio

  • Newbie
  • *
  • Posts: 6
  • Activity:
    0%
  • Reputation Power: 1
  • foobio has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: Who?
« Reply #16 on: April 28, 2012, 05:12:34 PM »
0
All this talk about .NET lib versions and nothing about how much WinForms Sucks ... USER32.dll should swim with the fishes.

Personally, have found better alternatives in WPF and Silverlight.  UIs are much cleaner and behave much better under different resolutions.  Faster, cleaner ... better.

And, of course, XAML just sounds cool (zammel).

Oh, and by the way ... I have migrated to .NET 4.0 on all my projects that use MS technology.  Much more optimized under the hood and the WCF enhancements make it well worth the migration since I am working a great deal in Web Service land. 

Of course - I do shy away from the stock MS stuff and deal more with Infragistics, Telerik, and ComponentOne.

Data grids in Microsoft land make databinding feel like chewing on tinfoil.

Offline TrailMyx

  • Officially retired from UO
  • Administrator
  • *
  • *
  • Posts: 13301
  • Activity:
    0%
  • Reputation Power: 154
  • TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!TrailMyx is awe-inspiring!
  • Gender: Male
  • Viper!
  • Respect: +1349
  • Referrals: 33
    • View Profile
    • ScriptUO
Re: Who?
« Reply #17 on: April 29, 2012, 10:19:47 PM »
0
Do you have some links or advice for the things you mentioned?  I'm always looking for some good new tools to play with.
Please read the ScriptUO site RULES
Come play RIFT with me!

Offline foobio

  • Newbie
  • *
  • Posts: 6
  • Activity:
    0%
  • Reputation Power: 1
  • foobio has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: Who?
« Reply #18 on: April 30, 2012, 11:32:51 AM »
0
There is a good overview of WPF on MSDN:

http://msdn.microsoft.com/en-us/library/ms754130.aspx

What I like about WPF is that the underlying graphics technoligy is NOT GDI/GDI+ ... it is DirectX.  Better yet ... it bases its scaling on a system DPI setting versus the physical display.  This makes UIs much more sane.

In terms of UI ... even the lamest of appications can get anti-aliasing and transparency and transforms the work to the graphics card.  However - if you aren't at vista or better ... you aren't getting the benefits of WDDM (Windows Display Driver Model) since the older OS don't support it.

There is much good in WPF .. Silverlight is a step up on it.  In WPF, you have the DirectX dependency which limits you to MS platforms.  The eventing model is better as well ...

In Silverlight - drawing is further abstracted.  THis provides some more open platform independence.  Silverlight has an oper-source counterpart "Moonlight" based on the Mono project.   Outside of Visual Studio ... haven't really played with any open source alternatives.  In my day job ... I use Visual Studio 2K10.


http://www.silverlight.net/

The link above is where you can snag the SDK and other useful tools.

In both cases they are based on XAML (Extensible Applications Markup Language) ...   (pronounced zammel) ...  the link provided above gives a brief overview of XAML. 

I like XAML since it completely decouples the business logic of drawing the UI from the code.  For example - winforms ... everything is C# or your favorite managed language and it is defined in code.  As you drop stuff on the design surface ... it becomes part of the class.

Thus - you compile it ... the UI is pretty much as ugly as you make it.  Personally - I have the artistic sense of a rock and many may think my choices of styles and colors suck.

With XAML you can quickly alter the look and feel without dipping into the code and refactor the UI without having to dig in the logic.

HTML 5 is the next step ... it is XAML like in the way it is structured.  The distinction is that it further abstracts the concepts of drawing canvas and applications.  Have just started playing with this ... but I would guess it is going to get more traction since an abstract drawing canvas and UI layer makes a really broad application possible.  i.e. Android, MacOS, JVM, Windoze, Linux would run the engines that do the bindings to the OS and the underlying engines and a common application would be run in the environment of the host.

In terms of my programming tools mentioned i.e. Infragistics, Telerik, ComponentOne ...

www.infragistics.com
www.telerik.com
www.componentone.com

They are all just providers of libraries for different technologies ranging from Winforms to Silverlight to HTML 5 frameworks.  Licenses for these cats ain't exactly cheap ... but if you are doing some coding for profit ... they do offer some really lightning fast alternatives to stock MS stuff.

And, of course, I can always be pursuaded to build a DLL based on some of their stuff which can provide better functionality when required, hehe.



Tags: