Software Development Network Logo
  • Smart Device
  • Visual J#
  • Architecture
  • .NET Development
  • Microsoft ISV
  • VS Team System
  • Windows Forms
  • SQL Server
  • Visual Studio
  • Visual C++
  • Game Technologies
  • Visual Basic
  • Windows Vista
  • Visual C#
  • Visual FoxPro

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

Chrissivo

Member List

neverdone
Bob Bedell
George Gomboş
sernst
QingY
Matt Hair
Idontcare2623
RamBilas
Peter Giffin
donkaiser
JuniorDB
Sto King
Morias
Lonny R
Helder Santos
msumption
Osamede
Damir Dobric
IgorTheTerrible
Melipao
Only Title

Chrissivo's Q&A profile

  • Visual C# Can I use "Virtual Space" in Visual C# 2005 Express Ed?

    There is no option to set "Enable Virtual Space" in the texteditor of Visual C# 2005 Express Ed. This setting was in Visual c#. NET 2003 and I am used to it. When this option is set you can move the cursor up and down and it doesn't go the last character of each row. Is there any solution for it any setting in the registry , or anything please help I'm blind. Yes, You are right. That was the solution. THANKS! ...Show All

  • Windows Forms Can't update my data!

    I have a piece of code like this:  DsContactos1.Contactos(0).Contacto = txtContacto.Text  then I pass it to my webservice, but the data isn't updated. I'm sure the dataset leaves to the webservice and I quick watch it to see and the text from the textbox was there. But the data wasn't updated :(((  Suprising is that I tryed like this:  DsContactos1.Contacto ...Show All

  • Visual Basic Ipod Programming

    I just got myself an IPod for x-mas, and was not happy with the the software bundle included (ITunes). So I started browsing the web for 3'rd party software which could transfer music from IPod->Computer and Computer->IPod. But I found all of those programs missing something I needed and wanted to make an application myself. The only thing I need help with is code to transfer a song to ipod which makes it compatible with the device for listening. Is this possible through Visual Basic 2005 Express, and could someone supply me with an example of the code needed to do it Best Regards, DogAss Yo ...Show All

  • Visual Studio Express Editions Progres bar

    Hi, I am making a web browser. But i dont know how to use the progres bar... UHM i know how to use the progresbar but i dont know the code for it.   Here is some sample code.  Create a test project.  Leave the form name as form1.  Add a Progress Bar (ProgressBar1) and a Timer (Timer1).  Then replace all the code in the project with the code below.  This shows you how to set the limits on the progress bar and how to increment the status bar itself. Each time the timer fires off, it increments the progress bar by 1 increment.  You need to do the same thing with the data you want the progre ...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 This means several things. a) your console application does not have manifest. Either embedded inside or external. To check this, do the following:       `1. Check for <appname>.exe. manifest next to exe. If it is not there, it may be embedded. Go to step&nbs ...Show All

  • Visual Studio Can't find Class Designer on IDE

    Can't find Class Designer on IDE I have the most basic question of all.  I've installed the Feb CTP.  Nowhere in any of the menus can I find the class designer.  If I add a new class the designer doesn't show.  I just get the basic classX Where do I find the class designer dennist SKU is packaging form - e.g. C# Express, Visual Studio Standard, Visual Studio Team Suite etc. You can find out which one(s) you have installed by going to Control Panel | Add/Remove Programs and finding them listed there - e.g. I have the following product name on machine with Beta2 VSTS installed: "Microsof ...Show All

  • SQL Server Installing RS2000

    We want to start working with Reporting Services on a Windows Server 2003 (SP1) server that has SQL2000 (SP3) Standard Edition. I thought I could load RS from the CD but it does not appear to be on there. I seem to remember that Microsoft added RS to SQL2000 in the last year or so. Can I download a copy of it, or how do I go about getting a copy and how to I show my boss that it is a legit copy Thanks... RS 2000 was shipped in early 2004 as a separate add-on to SQL 2000. Since then, we have shipped SQL Server 2005 with RS 2005 built right in. I'm not sure about the availability of RS 2000, now that SQL Server 2005/RS 2005 have shipp ...Show All

  • Visual Studio Team System Creating a Visual Studio Add-in for "Search"

    Hello all! We all know search is a problem in VSTS, each time we need to export the list to Excel and then use the Ctrl+F keys to search in a particular field. OR Creating a simple Query and modifying that query each time I need to search for another string. So I decided to create an Add-in in VSTS that simply asks for: -Select Team Project : combobox -Select Work Item Type: combobox -Search For: textbox -All Fields radio button #1 -Custom Fields radio button #2 -Search button and a Cancel button. The Add-in works great, debugging and all the functionality is done but I'm missing something. All I need now is how do I bind the ...Show All

  • Visual C# FxCop problem at compile time

    Hi My compilations crash with the following message. Does anybody have an idea Thanks (probably simple, but I did not find where I have checked "run fxcop after compile") ------ Build started: Project: IO, Configuration: Debug Any CPU ------ IO -> C:\NosDocuments\Autres\Programmation\CSharp\Vinny\Libraries\IO\bin\Debug\Vinny.Libraries.IO.dll C:\WINDOWS\Microsoft.NET\Framework\v2.0.50110\Microsoft.Common.targets(1771,7): error MSB4018: The "FxCop" task failed unexpectedly. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50110\Microsoft.Common.targets(1771,7): error MSB4018: System.NullReferenceException: Object reference not set to an instan ...Show All

  • Windows Forms datagridview create multiple column header rows

    In a bound datagrdiview ss there a way to create multiple column header rows Thanks Simmy No, the DataGridView does not have this feature. -mark DataGridView Program Manager Microsoft This post is provided "as-is" ...Show All

  • Smart Device Development Getting "Download Failed" Message!

    Hello Experts, We are facing this issue quite a while now and we have to repair our SDK everytime to get rid of this error message. Please help us find out WHY we get this Download Failed message everytime we start the emulator while working on evcpp The emulator works perfectly though once loaded but failed to show the application files. Any comments/suggestions will help us a lot! With Best Regards, Vicky Could you explain a little more about what you are trying to do Are you using eVC and Visual Studio 2005 at the same time Thanks, Vladimir ...Show All

  • Visual Studio How to add a custom dialog for properties?

    Is there a way to define a property that would fire a custom dialog instead of being a string, int or enumeration For example, I define a property "Item References" and when I select this property I have this little (...) button on which I can click to fire a dialog that will guide the user setting the actual value (e.g. filling a combox box with names of all domain classes that exist in the model). I believe this thread http://forums.microsoft.com/msdn/ShowPost.aspx PostID=60696  is linked to a similar question but I'm not sure I fully understood Gareth's reply. Cheers, Alex Hi Dmitriy ...Show All

  • Visual C++ ActiveX "Object required" error

    hello sorry if you have replied to my previous question, i didn't have the chance to read your answer (thread deleted) I have this error that stop me from using an ActiveX that i have just programmed and checked using the control test container. "Object Required" (error is fired when i try to attach a variable to my control) Thanks a lot for your time Olivier Thanks Tom. My problem was solved by installing again Visual Studio 2005, but your solution is obviously better. So if I have again the same problem, I'll know what to do. Jaime Montoya jaimemontoya@jaimemontoya.com www.jaimemontoya.com ...Show All

  • Visual Studio Custom task failing as part of build process, but not standalone

    I have a simple custom task that loads an XML file into an XmlDocument, retrieves a node with a given XPath query, sets a given attribute of that node to a given value and writes the XML file back to disk. Simple stuff. This task, which is the only task in a certain target, executes fine if called explicitly from the command line: msbuild <buildfile> /target:UpdateWebConfig But when that target is called (using CallTarget) from another target, the task reports a failure before the code in the overriden Execute method is called (the third line, after initialising a boolean local variable and opening a try{} block is a Log.LogMessage cal ...Show All

  • Visual Studio Team System deleting a team build

    hello, Is there also a way to delete a team build (not a build type!) I always read about "deleting a team build type" but never about a team build. Is there also a way to get rid of old builds somebody mentioned that this feature is not in beta2 but should be in the realeased version. is it true -- remo Yes, there is. You need to use the TfsBuild.exe delete command: Microsoft (R) TfsBuild Version 8.0.0.0 for Microsoft (R) Visual Studio 2005 Team System Copyright (C) Microsoft Corporation 2004. All rights reserved. This command deletes a completed build. All data related to the buil ...Show All

©2008 Software Development Network