 |

|
Hi everyone
Does anyone know the actual release of Visual Studio 2012?
Thank you?
|
|
|
|

|
It hasn't been announced yet, but I would imagine that it will roll out to MSDN late September, early October and be generally available in October.
|
|
|
|

|
Can I create games for windows 8 with C# and xaml?. If yes then from where I should learn game development in C# and XAML.
WANTED wasim khan(Killed 50 Innocent Buggs, Distroyed 200 Exception, make 5 Project Hostage) any Compnay Hire him will pay 30,000. Best place where u can get him is Sorcim Technologies Murre Road RWP
|
|
|
|
|
|
|

|
What exactly is a background process in Windows 8, and how is it different from a service?
Solution:
I just found this blog post:
Being Productive in the Background[^]
The difficult we do right away...
...the impossible takes slightly longer.
modified 8-Jun-12 23:21pm.
|
|
|
|

|
I am wondering..
Is it possible to take advantage of the new C++ syntax, new COM generation, new C++ .NET interop functionality without using WinRT?
I.e. I'd like to write a normal WPF desktop application.
I would like to write some part of it in C++.
I'd like to bypass the previous (and slow & clumsy) interop technology and, if possible, use the new interop one, which will make supereasy and efficient to share my code between C++ / C# without reverting to C++ CLI.
I.e. do I neeed to use C++ CLI / Managed C++, or could I use this new C++ extension with .NET 4.5 WPF desktop app?
A train station is where the train stops. A bus station is where the bus stops. On my desk, I have a work station....
_________________________________________________________
My programs never have bugs, they just develop random features.
|
|
|
|

|
I was surprised to see that with the Visual Studio 2012 RC release they have added Windows Vista support for .NET Framework 4.5.
Has anyone seen any indication that they plan to add Windows XP support in the future?
Soren Madsen
|
|
|
|

|
I beleive Windows XP is supported until 2014 so I would expect it will since that is still a couple years out.
But they could simply 'support' it with security flaws, or even worse go back on their claim to support to 2014.
Computers have been intelligent for a long time now. It just so happens that the program writers are about as effective as a room full of monkeys trying to crank out a copy of Hamlet.
|
|
|
|

|
I do not mean if Microsoft will continue to support the Operating System. My question is whether or not it will be possible to install and use .NET framework 4.5 on Windows XP. Currently it is not listed as being supported.
Soren Madsen
|
|
|
|

|
I know what you meant.
The fact is that .Net 4.5 is not officially released. Therefore why would they spend their time on getting it integrated with a OS that is going out the door, prior to its release. That will be the last thing they do, if they even do it.
My point of it being supported is that in all likelyhood after 4.5 is officially released it will be released for all actively supported OSes. But that is just my thoughts. MS has not made any official statement to this AFAIK.
Computers have been intelligent for a long time now. It just so happens that the program writers are about as effective as a room full of monkeys trying to crank out a copy of Hamlet.
|
|
|
|

|
It sounds like we are on the same page here. I did not think they would add support for Vista and XP at all. There are more XP users than Vista users out there, so I suppose they are just working their way backwards.
http://gs.statcounter.com/#os-ww-monthly-201104-201203[^]
Soren Madsen
|
|
|
|

|
According to this Microsoft Article[^] No
It may work, but be unsupported as they are trying their best to kill XP off ASAP
Lobster Thermidor aux crevettes with a Mornay sauce, served in a Provençale manner with shallots and aubergines, garnished with truffle pate, brandy and a fried egg on top and Spam - Monty Python Spam Sketch
|
|
|
|

|
My point is that a few weeks ago, this article did not have Windows Vista in the list of supported client Operating Systems. That was added with the latest Release Candidate.
I would like to see XP supported once they come out with the final product.
Soren Madsen
|
|
|
|

|
It may get added... But in all likelyhood not until official release. XP is the least of their concerns right now.
But still supported (and for 2 more years), so you do have hope.
Computers have been intelligent for a long time now. It just so happens that the program writers are about as effective as a room full of monkeys trying to crank out a copy of Hamlet.
|
|
|
|

|
My company has sold a lot of systems with Windows XP Embedded and we still sell these if the configuration calls for it. Support for XP Embedded runs until the end of 2016.
Soren Madsen
|
|
|
|

|
Please I would like to ask, is there any class provided in vb.net with which one can work with system hardware like the sound, webcam, and other system resources and also external devices being connected, easily. Please if there is I would like for someone to point it out to me.
|
|
|
|
|

|
I have a program. net, and a mysql database. My problem is how to compile the database and my program into one. Please help me,,,,
|
|
|
|

|
You can't. MySQL is a separate entity, and has to be run as a database server - and this question has nothing to do with this forum whatsoever.
|
|
|
|

|
Hi
There is no direct way to do it.
You have to include mySql setup files into your Application Setup like your application exe and dependencies.
One more thing, You need to create custom installer for your application, which can initiate the installation process of MySql.
There are so many topics available on net for custom Installer(just search it on Google or CodeProject).
Regards
AR
|
|
|
|

|
Do not cross post, you posted the same question here: http://www.codeproject.com/Messages/4264454/How-to-compile-VB-Net-2010-with-mysql.aspx[^]
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
"Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
|
|
|
|

|
Below is the code that is actually closing the whole application when clicked on Yes.
But,I want to close the current form and open the new form when the user clicks on X with red mark i.e. close on the form.The code I wrote is :
<pre lang="vb">Private Sub form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Dim response As MsgBoxResult
response = MsgBox("Do you want to close?", MsgBoxStyle.Question + MsgBoxStyle.YesNo, "confirm")
If response = MsgBoxResult.Yes Then
Me.Dispose()
homepage.Show()
Else
If response = MsgBoxResult.No Then
e.Cancel = True
End If
End If</pre>
end sub
|
|
|
|
|
 |