Windows 8 Server! – ViStart Works :)

Share on Facebook

Fixed Up Sixth Sense to work on .NET 4.5/VS11

If you need the code I have passed it out the 6th Sense Architecture team on our list so if you need it email me.

You may have to uncheck your Loadlocker throw exception.

 

Tomorrow the Camera.

 

 

 

Share on Facebook

Windows 8 Enterprise Information

http://windowsteamblog.com/windows/b/business/archive/2012/04/18/introducing-windows-8-enterprise-and-enhanced-software-assurance-for-today-s-modern-workforce.aspx

Share on Facebook

Select Columns from tables.

I have needed these methods over the years in different situations.  It pulls column names from tables.

select * from information_schema.columns where table_name = @table order by ordinal_position

OR

select * from sys.columns where object_id = OBJECT_ID(‘table_name’) order by column_id

Share on Facebook