Vagolon's Q&A profile
.NET Development Windows Update
My university said they will only update to 2.0 once it is available on windows update. So when will 2.0 of the framework be available for download from windows update I doubt it will ever. Microsoft only ever pushes security fixes and service packs down to the user, I doubt they will push the Framework. ...Show All
SQL Server Installing Reporting Services on a Web Farm
A Customer i work for has a problem with installing the reporting services for SQL server 2000. We were able to get the reporting servces working on a single server. This work Perfectly. But now we want to install it on a web farm. We went though all the steps described in an article for installing the reportings services on a web farm: http://www.awprofessional.com/articles/article.asp p=357694&seqNum=6 The final step is in this pr ...Show All
SQL Server Management Studio Scripting Bug?
In my install of management studio when I use the scripting wizard and get to the Choose Script Options dialog The Script Behavior drop down has only two options (Generate CREATE statements only, or Generate DROP statements only). It doesn't have the option to generate a drop followed by a create. If you read the description of the Script Behavior that is below the options you'll see that it advertises a Drop and create option. ...Show All
Visual Studio 2008 (Pre-release) Read a System Table with DLinq
How can one read a "sql" system table like sys.tables using DLinq I have try the following, but no luck - Get "Incorrect syntax near '.'." string connection = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=AdventureWorks;Data Source=localhost" ; System.Data.DLinq. DataContext tDataContext = new System.Data.DLinq. DataContext ( connection ); string sql = "SELECT Name from sys.Tables" ...Show All
Windows Forms Runtime error, File Format is not valid in RichTextBox.LoadFile()
Hey, I have a starnge runtime error, when I run my program and click ont he load option it opens up the load dialog, so then I click on Text FIle(*.txt), and then click on a text file to open and then when it is opening it, it gets a runtime error, it highlights this line of code: RichTextBoxPrintCtrl1.LoadFile(openDialog.FileName) This is the load code: Private Sub openMenuItem_Click(ByVal sender As System.Object, ByVal e As ...Show All
SQL Server deploying sample databases like AdventureWorks,AdventureWorksDW
While installing SQL Server 2005 SEPT CTP, I did selected in Advanced option to install entire feature of sample databases on local hard drive. I can see the sample db and cube got installed on my local hard drive but how can I get it deployed so that I can see in Management Studio and in Business Intelligence Development Studio. Thanks, You can see the files in the C:\Program Files\Microsoft SQL Serv ...Show All
Windows Forms DesignSurface MemoryLeak
Seems that DesignSurface has a memory leak. This can be observed by running the program bellow and push several times the <ShowDialog> and <CallGC> buttons and observe that the heap memory increase each time <ShowDialog> button is pushed. The leak can be also observed by running the CLR Profiler for Whidbey. Details from CLR Profiler are at the end of the message. CLRProfiler for Whidbey final can be downloaded from http: ...Show All
Visual C++ audio input?
Hey there, just wondering if anyone knows of a simple way to get audio input from a microphone. What I want to do is build a neural network, train it to recognize commands, and then have it execute files and or tasks based on those commands. In addition, if anyone knows how to call external programs, that would be very nice to know as well -I have a good book on the windows API which I imagine I will need to read to figure this one out tho ...Show All
Smart Device Development How can I tell if the user clicked the OK on a form
Hello, Is there a way to tell if the user clicked the "OK" of a form opposed to a button on the form that forced the close of them form, in vb.net I would like to disable the ability to click the "OK" button if possible. Thanks in advance. John What sort of form are you using If you're writing it, you can just remove the OK button. The form returns DialogResult.OK if the OK button ...Show All
Visual Studio MSBuild is not copying the assembly to the output directory.
For some reason, when I compile projects using MSBuild, it occassionally fails to copy an assembly to the output directory. No errors occur, the assembly is built correctly to the obj directory, and compiling the project a second time using MSBuild seems to work fine. The MSBuild output seems to indicate that the file was copied without any problems, however, the file is not in the output directory. I had the same problems with using V ...Show All
Visual Basic Programming Challenge since u re great guy
For this challenge, you'll need to write an algorithm to find your way from one corner of a field to another as fast as possible. You will be given a starting point and an ending point, and you'll need to tell us how long it will take you to get from start to finish. The field is a grid, and you can only move up, down, left and right. Each move of one grid square takes 1 second. Unfortunately, there's also walls in the way.....the rest is her ...Show All
Windows Forms ASP.NET Version 1.0 to 1.1
In VS.NET 2002, can I get it to compile using asp.net version 1.1 (I have both 1.0 and 1.1 running on the same computer) TIA! not in VS.Net 2002, as it always compile the assembly to the Version 1.0, but if you have&nbs ...Show All
Visual Studio 2008 (Pre-release) Not getting the mouse events on the Canvas that is place in a FixedPage
I am using a documentviewer control that has a fixed page on it which displays a canvas. The problem I am having is that the mouse events are not received by my canvas. I am trying to insert UIElements on the canvas using the mouse. I have noticed that the cursor looks like the fixedDocument cursor not the canvas. Any ideas what I need to do or what is wrong Thanks. ...Show All
Visual FoxPro Fatal Error when writing to excel
Hi, The version of Foxpro is 6.0. The application I am buliding is to write data into Excel 2003. There are times when I am getting a Fatal Error at a stage when I am writing the data into the cells. Prior to this step I have other processes where I add more sheets and rename them, setup the borders and page setup and all works fine. I try to debug the application and it runs fine. The problem is that the message is ...Show All
Windows Forms pls help: Resize control at runtime?
I was wondering how it would be possible to move objects such as a text box or a label on a form at runtime with the mouse. The control would be selected and then moved, resized, ect (the same way that a developer lays out control with Visual Studio .net in design mode.). I have been going mad tring to figure out how to provide similar functionality to my programs. If you may be able to help please email me at dohoangtung@gmail.com Thank for any ...Show All
