martinnickel's Q&A profile
Visual Studio Express Editions Error 1406 Installing Web Developer Express
Successfully downloaded all 344 MB of the Visusl Web Developer Epress load (VWD, MSDN documentation, SQL Server Express) Encountered error in doing VWD setup using Windows Installer 3.1 in Win XP SP2 machine. (SQL Server 2005 Developer Edition has been sucessfully installed previously and is currently installed on the machine and the service was running). -------------------Error Message Box-------------------------------------- Title: Visual Web Developer 2005 Express Edition Setup Message: Error 1406.Could not write value to key \CLSID\{AC0714F7-3D04-11D1-AE7D-00A0C90F26F4}\ProdID. Verify that you have sufficient ac ...Show All
Visual Studio Team System Error Executing reports
I have been evaluating the Team Foundation Server Beta Refresh 3 without any problems, but have recently installed on a new server the RTM Trial Version, but the reports don't work. For report Bug Rates: An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'PriorityParam'. (rsErrorExecutingCommand) Query (19, 3) The ALLMEMBERS function expects a hierarchy expression for the argument. A member expression was used. Any ideas Thanks Giles hi giles, My guess is that the warehouse hasnt uploaded any data yet. Please check the application ...Show All
Windows Forms How to Raise Events at Specific System Times?
To learn a little more about Windows Forms development, I decided to try to make an alarm clock that plays music at specified times. Using the WMP SDK, I learned how to add a "WMP control" to my form and play music through it. I've also added a way for the user to input the specified times for the alarm to go off. & ...Show All
Windows Forms reading comma separated values from .txt
Hi, I have a .txt file that has comma separated value. Its not a csv because when I open it in excel it shows the whole row in one cell.. This is how it looks like Row1Value1 , Row1Value2 , Row1Value3 Row2Value1 , Row2Value2 , Row2Value3 Row3Value1 , Row3Value2 , Row3Value3 Is there anyway I can read it directly in a datatable without parsing it row by row Thanks, Hope these links will help you- http://www.codeproject.com/cs/database/CsvReader.asp http://www.codeproject.com/cs/database/FinalCSVReader.asp ...Show All
Visual Studio Item->Property processing
I have an item like this: <ItemGroup> <MyItem Include="..."> <Metadata1>...</Metadata1> <Metadata2>...</Metadata1> </MyItem> </ItemGroup> And a property like this: <PropertyGroup> <Arguments>myprog.exe /something</Arguments> <Arguments>$(Arguments) /more_something</Arguments> <Arguments>$(Arguments) @(MyItem->'/myswitch:%(Indentity),%(Metadata1),%(Metadata2)', ' ') </Arguments> That I pass later to an Exec Task The problem is that I MyItem includes "xxx" with Metadata1  ...Show All
Visual Studio Express Editions ok
if i declare iosteam like this #include<iosteam.h> i get " libcimtd.lib" is missing else #include<iostream> cout is an undeclared identifier the only thing that adds Libcimtd is UseOldIO.h but _mt isnt defined so it shouldnt be accesed Can anyone help id apperciate it. Add the line: using namespace std; If this doesn't work then please state which edition and version of Visual Studio you are using. ...Show All
Visual Basic Startup Programs
Ok i have a made a program but encounterd some problems. My Program is acutally a reminder program where it will show a msgbox the user when it is time. 1.) I want to make it a startup program and i know to do that i have to put the .exe file under C:\Documents and Settings\user\Start Menu\Programs\startup. But if i distrubute this program with an installer, lets say with clickonce publishing which is the default. How can i make the installer put the .exe file under the startup folder 2.)When the program startsup it should be hidden, like antivirus programs; they startup hidden with only a notify icon running. There should only be the ...Show All
Visual C# HELP ME PLEASE!!!!!
hi everyone when i press f4 i want to show the properties of the class how can i do this If you mean your how to popup the property view in Visual Studio, you can bind the F4 shortcut button to the View.PropertiesWindow action. You can bind this in the option screen of Visual Studio under the Environment->Keyboard section. ...Show All
Visual C# Easy way to check if a value is in an enum?
Hi, I am trying to check if an int returned by the browser representing a user's account type is a valid value, ie. it is one of the values within an enumeration of valid account types. Is there a quicker way of doing it than this private bool InputIsWithinRange(ref int accountType) { Type accountTypeEnum_Type = typeof(SiteUser.AccountTypeEnum); Array possibleValues = Enum.GetValues(accountTypeEnum_Type); bool validAccountType = false; for (int i = 0; i < possibleValues.Length; i++) { if (accountType == (int)possibleValues.GetValue(i)) { validAccountType = true; ...Show All
SQL Server How to return varchar(MAX) from a CLR function?
Hi, I am trying to return [ string/SqlString ] from a CLR function, but it was truncated at 8000 characters. How can I solve this problem and return varchar(MAX) Thanks The Visual Studio deployment tool maps SqlString to VARCHAR(8000). Use SqlChars instead -- it gets mapped to VARCHAR(MAX). -- Adam Machanic Pro SQL Server 2005, available now http://www..apress.com/book/bookDisplay.html bID=457 -- <Bill YU@discussions.microsoft.com > wrote in message news:2a21db0a-f54b-42e2-88b9-fb4cab26d356@discussions.microsoft.com ... Hi, I am tr ...Show All
.NET Development Overwrite one section of binary file
Hi! I have a binary file that contains strings one after the other and I want to replace a string at offset x. The existing string is, let's say 10 bytes long, but the new one is 12 bytes long. How do I replace the old string at position x without overwriting the first 2 bytes of the next string and without rewriting the entire binary file from offset x. Thanks already in advance! If the SQL server setup is not too big I might do it that way, but first I'll take a look at that Intel library, although that sounds very "unmanaged" and thus probably hard to work with. Thanks for your help! ...Show All
Visual Studio Tools for Office Word to XML from C#
Hi, how can I open a word documente and save it as the xml format from a c# script u will be able to do that in office 12, not office 11 and c# is not a script :( it is a language :) ...Show All
Visual Studio Team System Scheduling Build
Hi, How do you schedule a build with Team Foundation System Thanks Shals You'll find information about that in the following thread http://forums.microsoft.com/msdn/ShowPost.aspx PostID=3593 . Buck ...Show All
Visual Studio Express Editions pls help me about mobile script...
hi you ! what do i do if i want to develope for mobile devices (send sms to mobile phone from website)... thanks so much To send Messages to a Mobile Phone you will need to find a provider that has a system that you can tie into so that you can communicate view there messaging gateway. Another option is to use a GSM Modem and have your application talk to the modem to send the messages. You might be able to check ot the communications forums for some answers. As the express products do not support the development of mobile devices you will have to purchase one of the full products to develop ap ...Show All
Windows Forms How to embed child datagrid into its parent in windows forms
Hi I want to embed a child datagrid into its parent grid in windows forms so that the user can select some rows in the child for processing. I tried adding a relationship between the two tables but the datagrid shows a + sign which takes me to a new datagrid. I want to display the child datagrid into the parent grid. I searched a lot in the net and could find one similar in Sync fusion. I don’t want to purchase the same since that involves licensing and maintenance problems. Can anybody help me in this regard and provide a solution for the same ASAP as my project deadlines are nearing. I'm using .NET frame ...Show All
