Software Development Network Logo
  • Visual C#
  • Visual Basic
  • Visual C++
  • Microsoft ISV
  • VS Team System
  • Game Technologies
  • Windows Vista
  • Visual Studio
  • Visual FoxPro
  • IE Development
  • Windows Forms
  • SQL Server
  • SharePoint Products
  • .NET Development
  • Audio and Video

Software Development Network >> MA2005's Q&A profile

MA2005

Member List

Seraphino
David Bridgestone
Jarle Nygård
Primate101
Eswans2000
fugu996
d72e4d
maddman
Mr.Kuo
Duane Haas
Ultrawhack
Ravel
LPlate
James_Steven
LukeyPoo
Sajankp
AllahIsGook
EddieMu
IxxI
noni78
Only Title

MA2005's Q&A profile

  • Windows Search Technologies Windows Desktop Search component crashes every time when shutting down XP

    After starting shutdown of my computer I allways get a system message that says something like "wds_sl.exe is not responding".  After I press enter key in the system message window XP continues with the shutdown. Sometimes I get 2 or 3 such system messages. ----- I installed Internet Explorer 7 (Release Candidate 1)  and  after the installation I noticed that wds_sl.exe has stopped crashing on shutdown. Hi RB, Thanks for the advice - glad you got yours sorted. Could you tell me where I can get v3 from, as I've had a brief search around but can only find 2.6.6 ...Show All

  • SQL Server SQL2005 Data Import Error, Unicode data is odd byte size for column <n>. Should be even byte size

    Hi, I have a problem importing data from SQL Server 2000 'text' columns to SQL Server 2005 nvarchar(max) columns. I get the following error when encountering a transfer of any column that matches the above. The error is copied below, Any help on this greatly appreciated... ERROR : errorCode=-1071636471 description=An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Unicode data is odd byte size for column 3. Should be even byte size.". helpFile=dtsmsg.rll helpContext=0 idofInterfaceWithError={8BDFE893-E9D8-4D23-9739-DA807BCDC2AC} (Microsoft.SqlServer.DtsTransferProvider) Many thanks This solution will wo ...Show All

  • Visual C# How execute for example calculator from my application code?

    Hello I need code which opens any file from disk. For example When I click button in my application then - calc.exe opens or xxx.html opens in Internet Explorer or ... Can anybody help me. Hi You can start any application with System.Diagnostic.Process.Start method just specify the application name and arguments and it will run the application for you. System.Diagnostic.Process.Start("calc.exe"); //will start Calculator System.Diagnostic.Process.Start("iexplorer.exe"," www.micorosft.com "); //will open IE with loading Microsoft.com web site ...Show All

  • Software Development for Windows Vista Re-enabling Windows Vista features

    Hello, I know this topic might be a little off topic but I can not find a better forum to ask! So my apologies for that. Here is what is happening. I have a computer that support Aero. IT was enabled and was working perfectly. In the process of installing the machine, Vista asked me if I wanted to disable the Windows Vista features (ie: aero for that matter) and I've accepted thinking it would help the install. While it did, it completely removed the possibility to enable the specific features of Vista. One of the manifestation is in the Personalization screen, selecting Window Color and Appearance shows on the Appearance screen despite the Theme being set to Windows Vista. I also do have the Show window previews in the taskba ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Rendering multiple viewports

    Hello community, I've created a couple of components that allows you to render a 3d model in space, and it has a camera that allows you to move around in space. Right now, I want to be able to define multiple viewports with different camera angles so I can view the scene from different perspectives. I know it isn't quite hard to accomplish this with MDX, however I can't find any code on how to control the device using XNA. All help is very appreciated, thanks! Hello, Well, I'm going to present to a group of co-workers that are all .NET developers. The reason I want to use the designer stuff is because that makes it easier to follow the presentations ... For example, I might drag a component on ...Show All

  • Windows Forms Getting data binded to another combobox

    I have form1 that contains a combobox that I need it to be populated with data from a collection of objects.. it happens like this I click a button and Add items to an arraylist on this dialog form that comes up... When i add the items to the arraylist and click the OK button on my Dialog form I want the comboBox on Form1 to be populated with that information that was added in my Dialog box... private void btnAddToList_Click( object sender, System.EventArgs e) { this .AddBillToCustomersList.Add(( int ) this .cboCustomer.SelectedValue); lbAddBillTo.Items.Add( this .cboCustomer.Text); } private void btnOk_Click( object sender, System.EventArgs e) { //Here I need to add the items that i added in the ...Show All

  • SQL Server SQL profiler not reading application names

    Hi guys, Im not really sure how complicated this is but we shall see. Im running a .exe compiled from 4GL which accesses the database. But when I run a trace on the database no application name is picked up. Does anyone know how SQL profiler finds the application name or what is required in the .exe file for SQL profiler to see the application name This would be a great help if anyone has any information. Many thanks, Querix There are a couple of ways that the name is populated. You'll often want to combine the application name with NT User Name and SQL User Name. The application reports the application name, and not all of them do. The name normally comes from the the connection string: server=My ...Show All

  • Visual Studio Team System Error 29109

    Hello, I am getting the following error during the installation of SP1 for TFS, Error 29109. Team Foundation Report Server Configuration: Report Server Configuration encountered an unknown problem. Verify that you have sufficient permissions to configure Report Server and try again. The install is in a dual tier configuration on newly installed servers, the data tier has been installed without issues using the tfssetup account which is a local admin on both boxes. Is there something missing from the TFS install guide that I am missing The MSI error log show the following line causes the problem: MSI (s) (08!F8) [16:01:33:536]: Product: Microsoft Visual Studio 2005 Team Foundation Server (services) - ENU -- Error 29109.Tea ...Show All

  • Visual Basic Generate InteropForm Wrapper Form Classes menu is gone after Vb6 install

    Hi All, I installed the power tool and had it working through Access Basic. I then decided to install VB6 and try direct from there, but since the install the menu option has gone from my Tools Menu. I have uninstalled and reinstalled the power tool, but still no luck. If I check the Add In manager, it is still listed as installed, but I dont know how/where to put the menu option back. Any ideas greatly appreciated. Regards, Al Ashcroft Check out this post and see if it helps you fix your problem: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=751575&SiteID=1  -Bryan ...Show All

  • Visual C# why is not possible to color DataGridView cells in DataGridView during runtime???

    Hello! I have a question about colouring DataGridViewCells. I have a DataGridView made by VS2005 designer. I binded this DataGridView to a DataTable (dgv.DataSource = dataTable). Everything is OK, and the grid is displayed fine. But when I want to colour some cells in DataGridView during runtime simply nothing happens. For example myDataGridView.Rows[1].Cells["MyColumnName"].Style.BackgroundColor = Color.Red. Wen I change cells value, everything is fine, for example: myDataGridView.Rows[1].Cells["MyColumnName"].Value = "whatever". I tried also MyDataGridView.refresh()... Interesting thing is, that it is possible to colour cells from events...it works fine. But I need to do this during the runtime.. ...Show All

  • Smart Device Development The Operation could not be completed. The array bounds are invalid

    Hi I am trying to a debug a simple "hello world" application. When i press F5, the project builds and deploys but always fails to run. I get a successful build and deployment message in the output window. After the successful deployment, i get a error window "The Operation could not be completed. The array bounds are invalid". Environment :- Win XP Pro VS.Net 2005 Windows Pocket PC 2003 SE. Langugage C# I tried hitting ctrl F5, it also doesnt work. I can also see the emulator is connected properly. Any help at the earliest shall be highly appreciable. Karthik Hi Sivarv, Yes, exactly: 1. Tools->Connect to Device has succeeded 2. Build->Deploy Solution has succe ...Show All

  • Visual C++ How to register a hot key by using scan code

    Is there any way to register a hot key by using scan code Since RegisterHotKey() only accepts virtual key code as the fourth parameter, apparently I need to convert the scan code into a virtual-key code. However, unlike other extended keys, that cannot be done because the key I want to monitor does not have corresponding virtual key code. I tried MapVirtualKeyEx() to convert the scan code, but no valid result was obtained. I suppose it is possible if one of the following could be done. 1. somehow registering hot key with scan code 2. adding new virtual key code for the key to the current layout I know I can monitor the key if I use the keyboard hook, but I would rather stay away from it for some reason. Any help would be ...Show All

  • Visual Studio 2008 (Pre-release) The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessag

    I am stomped! I have done every imaginable thing on the server and the client but I keep getting the error below... The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element. I have set the values to the very large value, but I keep getting the error. When I instantiate the object and just past the empty object to the service, everything works fine, but as soon as I populate the object and attempt to pass it, I get this frustrating qouta error. I can't understand this... I totally can't This is the config settings on the server <system.serviceModel> <services> <service behaviorConfiguratio ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Toolbox

    in the first XNA CTP was a XNA toolbox with a kind of workflow symbols (integrated in vs 2005 ) is this feature still there That is XNA build you are thining about. http://www.microsoft.com/downloads/details.aspx FamilyID=868fe562-5ded-4bb1-8648-708d3481bda3 This isn't connected with the just released XNA Express or XNA framework ...Show All

  • Visual Studio Express Editions delimiting a CSV file with too many commas

    I have a webrequest that returns a stream from a CSV file which i first delimit using the split(controlchars.lf). This works great; however when I try to break down each line into elements using split(","c) it creates too many elements because some of the fields have names which contain commas. I tried using quotes but that does not work either because some names have quotes in them. The CSV files have nearly a thousand rows each so manually manipulating the data would be too cumbersome. Any ideas on how to delimit this string so that i can load the data into a dataset example of data: Ticker list as of 11/30/06 (need to skip or delete) "Name","Symbol","Market Cap","Shares Outstanding& ...Show All

©2008 Software Development Network