Minherz's Q&A profile
Visual Studio Tools for Office Use Visual Studio 2005 or use VBA in Access or Excel?
I am looking for some direction as to how to begin a new project. I am wondering if it would be better to try and use Access or Excel along with VBA to do this project of if I should use VS.NET 2005. What I would like to do is make a proggy similar to QuickBooks. When I downloaded QuickBooks and ran it on trial, I noticed it looked like someone took Access and created a custom form for it. I want the program to be able to keep track of an inventory that will be able to handle being updated. I would also like it to create reports and send them out to either be printed or maybe into another app like Excel. The program will need to ...Show All
.NET Development How to create a new .txt file?
File.Create(filename) method can't create a new file because of UnauthorizedAccessException. My OS is Win XP Sp2, and my IDE is Visual Studio 2005. Who can tell me what's the matter Maybe the file name is wrong, maybe the directory where you want to create the file does not exists... Can you provide more details, a piece of code perhaps ...Show All
Visual FoxPro Form clattered at design time. How to change pages?
With many controls added to a form I am beginning to sense a problem. During runtime many controls will be invisible on the first page but when subsequent pages are chosen they will appear. It is determined programmatically. I do not see an option to choose pages at design time. It would allow me to see some controls much better. In Visual dBASE Plus such convenience if taken for granted and much appreciated. How can I do it here Thanks. Hi Alex, Just to make sure you understand, Forms don't have Pages, PageFrames do. If you want Pages then you need to add a Pageframe control to your Form. PageFrames are container objects that contain ...Show All
SQL Server Problem Passing Report Parameters in URL
I'm currently trying to create a report that will take three parameters in the URL to generate a report: year, month, and day. The report is using an analysis services data source in RS 2005. Now, my problem is that the parameters being passed in the URL are not being selected in the drop down boxes for the parameters. The report does not throw any exceptions, and after the user selects values for the year, month, and day everything generates successfully. Here is the URL format I am trying: http://localhost/ReportServer /FolderName/ReportName&rs:Command=render&Year=2006&Month=6&Day=9 Currently, my parameters are all set t ...Show All
SQL Server RPC Server is unavailable
Can anyone tell me why I get this error on my new test server when trying to poing the setup of Reporting Services to my (local) database in SQL 2005 Enteprise I've come across this before on another machine and ended up having to reinstall SQL 2005: http: / / www. webfound. net/ rpc_ server_ unavailable_ error. JPG Is RS installed on the same box of SQL You need to enter the name of the server that runs RS. The screenshot shows you entered (loca). Is this a typo ...Show All
Windows Forms App Settings & configurations
Hi, I am new to windows development and I was wondering, what would be the best way to save an application settings without being accessible to app users. I thought of XML config file but this defeat it being "hidden". Will embedded resources file do the job I hope so but how :) I was reading about resx files and found out it's d ...Show All
Visual C# Internal Compiler Error - likely culprit is 'BIND' - C#.NET v1.1
Hi All I'm using C#.NET v1.1 I am getting the following compile error, I'm having several if statements inside two foreach statements. And inside some of the if statements I'm having one foreach statement. This doesn't occurs only when I removed the last three if statement(newly added), I tried removing other if statements but its giving error, nothing spl in the last 3 if statement. why is it so anything I'm doing wrongly or its a defect in compiler error CS0583: Internal Compiler Error (0xc0000005 at address 535DB439): likely culprit is 'BIND'. An internal error has occurred in the compiler. To work around this proble ...Show All
SQL Server Fit dataset on one page
Hey guys, Let's assume I have dataset with two columns (A,B) and it has 100 records. I'd like to split this dataset on the same page with 25 records in every column. Side by side. Example: ColA ColB ColA ColB ColA ColB ColA ColB 25 rec 25 rec 25 rec 25 rec What should I use and what properties I have to play with Thanks. Just a quick drop answer: - I asume regular column format does not work for you because you want balanced columns and RS gives you unbalanced ones. - I asume you have a static format= always 100 records, always 25 records/column, or alike. In t ...Show All
Visual C++ Command Line Arguments
I'm kind of new to C++ and am having a few problems getting started. I'm just wondering does anyone know how to pass a command line argument to a program using the Microsoft Visual C++ software Any help would be greatfully appreciated. Thanks in advance, Neil. You can use argc & argv to pass arguments to your C++ application. Take a look at http://msdn.microsoft.com/library/default.asp url=/library/en-us/vccelng/htm/basic_21.asp for more details. Hope this helps! Thanks, Ayman Shoukry VC++ Team ...Show All
Visual Studio Copy-modify-merge
Hi, I'm new to Visual SourceSafe and have some questions about the copy-modify-merge work style. In this model what is the whole purpose of checking out as opposed to just getting the files Is it just to signal what files must be checked in later In that case why do you need to be connected to the database in order to perform a check out In particular when I try to check out a file in Visual Studio 2005 (with SourceSafe 2005) while I'm offline, the program warns me that the "real" check out will actually be performed only when I get back online. So what is this "real" check out about It also warns me that it may be poss ...Show All
Visual Studio Express Editions ReadByte Vs Readline Vs ReadExisting Vs ReadTo Vs Read
I have managed to get my vb app to talk to another pc sending a text file via hyperterminal - Transefer - Send text file and using SerialPort in the vb app. If I use .ReadByte or .ReadChar I get the 1st byte of data sent across, if I use any other .Read I get absolutely nothing. The text file has an Newline (LF) character present so would expect .Readline to function ok. Tried .ReadTo with a known character in the file, again it stops at the .ReadTo statement, same with .ReadExisting and .Read which should just take the contents into the buffer on issue of the statement. Added a .BytesToRead statement after the .ReadByte statement and i ...Show All
Visual C# WebBrowser events question
I have the following code that navigates to a web page. When the DocumentCompleted event fires it calls the Login method which logins to the page. My question is, how to I create an event handler to call another method once this page (the one after logging in) is finished loading private void button1_Click( object sender, EventArgs e) { webBrowser1.Navigate(textBox1.Text); webBrowser1.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler (Login); } private void Login( object sender, WebBrowserDocumentCompletedEventArgs e) { HtmlDocument doc = this .webBrowser1.Document; doc.GetElementBy ...Show All
.NET Development How to get the list of available satellite assemblies for the main assembly?
I found just Assembly.GetSatelliteAssembly() which returns just one satellite assembly. I want to retrieve to list of all for users to select their appropriate languages.Please suggest!!! Thank you!!! As I've tried with System.Resourece.ResourceManager, to make it works, you just need to copy new satellite assemblies into the same folder of your application following some folder and file naming convention. So I just want to allow users to just extract new resource file to use the new language. ...Show All
Visual C++ msvcr80.dll not found
I've created a simple Win32 console application. When I try to debug it, I get the message: "This application has failed to start because MSVCR80D.dll was not found. Re-installing the application may fix the problem." The Release version runs fine. Any idea as to what the problem could be Thanks, Jonny feuerste that's an excellent point (I'm "bottom posting" this reply so it will appear at the bottom of this thread) I didn't know what the "use FAT32 work-around" option was as it's not even in the online help. And the only mention of it seems to be in a Korean blog at: http: ...Show All
Visual Studio Team System Resources: Team Development & Collaboration with Team System
Articles Enterprise-Class Source Control and Work Item Tracking Interview: TheServerSide.NET with Eric Lee on Visual Studio Team Foundation Server Videos & Webcasts DEV 463: Maximizing Collaboration with Team Foundation Server , TechEd 2005, June 2005 DEV 466: Enterprise-Class Source Control , TechEd 2005, June 2005 DAT 381: Team Development with SQL Server 2005 , TechEd 2005, June 2005 MSDN Webcast: Enterprise-Class Version Control (Level 200) Enterprise Class Source Control & Work Item Tracking , DevConnections, November 2004 Source Code Control and Item Tracking Demo Check out the cons ...Show All
