Princess77's Q&A profile
Visual Studio Using target
I have a Visual Studio C# proyect and I add this to csproj file. <Target Name="promote" > <CreateItem Include="$(TargetDir)**\*.*"> <Output TaskParameter="Include" ItemName="BuildOutputs" /> </CreateItem> <Copy SourceFiles="@(BuildOutputs)" DestinationFolder="C:\foocopy\cs" /> </Target> But I can't build my proyect with "msbuild /t:pro ...Show All
Visual Studio Tools for Office File or assembly name Microsoft.VisualStudio.Tools.Applications.Runtime, or one of its dependencies, was not found.
Dear forum, I have started developing Office application using VSTO 2005. I am unable to run any office application from a sever. The error code is listed below. The server running the Excel application has the following configuration: 1. Windows Server 2003 + latest update (06.06.06) 2. .Net Framework 2.0 3. .Net Framework 2.0 SDK 4. Office 2003 Professional + lastest updates (06.06.06) - Including PIA's 5. VSTOR (Visual Studio Tools for Off ...Show All
Visual Basic VB.NET ComboBox DataSource and generic list of strings
I have problems getting a ComboBox to display the contents of a list of strings. I have a dictionary and I want to display its keys, so I put them in a list (I have tried with different lists, both generic and ordinary ones). Next, I try to set the DataSource property to the list of strings, but then nothing gets displayed in the ComboBox. If I add each string in the list manually it works though. Now, some may say that I need to set the Disp ...Show All
Windows Forms Design Screen & Project for Common Masters
In our current system that we r designing, there are lot of masters(e.g. company master, city master, country master) that have common fields e.g. Code, Description, + 3 addl fields. Hence I will have only one table for these masters grouped by a field called mstgrpcode. Hence I dont want to create seperate projects in asp.net (VB) for each master because that will mean lot of maintainence. I need to have only one project common t ...Show All
Visual Basic VB.Net templates
I need to create a project application complete with reports in a weeks time. Where can I find templates to create a project quickly to build on. I am use to VBA with MSAccess but anxious to dive into .net Places like www.codeproject.com are a good place to look for sample code. I'm a bit scared tho -this is your first VB.NET app and you have a deadline of a week VBA and VB.NET are two very diff ...Show All
Visual Studio Express Editions dialougue message
how do i create a windows dialougue/error message (the little window that pops up and has a message and an ok button) with c++ thanks for the help Hi there, Are you creating a .NET Windows Form or are you using MFC If you are creating a .NET Windows Form, here is an example: //Plain message box - Text, title & OK Button MessageBox::Show("This is an example message box", "Example message box title"); /* Mes ...Show All
Windows Forms What permission is required for Process.Start()?
If I do a Process.Start() in a medium trust environment, I get a SecurityException. This is not documented in VS .NET 2003. What permission do Process & ProcessStartInfo require Frustrated in launching land. Mark Levison hi all, this is an  ...Show All
Visual C# can my C# assembly know when it's been loaded?
I am writing a C# assembly that is completely independent from its host. This assembly doesnt have a single functional point of entry (it has a lot of objects that can be used in various ways). Is there a way i can be notified on the first time, just once, that my assembly is loaded/and or being used I need to know this in order to trigger an initialization of a resource. Thanks. Make the resource ava ...Show All
Windows Forms Setting the index = -1 in Databound combo box
HI, I am having a problem in a databound combobox , whenever I set the selectedindex value = -1 an error is poping up " There is no row at position -1". What I am doing here I have a text box on my form which is bo ...Show All
Visual Basic How do I split packets?
What code would I use to split packets or slow them down I'm tring to split the packets using winsck.ocx so I can get rid of the buffer... any idea on how to split the packets so that there smaller when they come in or slow the packets down when they come in ...Show All
Game Technologies: DirectX, XNA, XACT, etc. samples from directx SDK fails
I am trying to build the sample code which came with directx sdk, hopefully this is the right place to ask for help. When I build the sample code from "SimpleSample", I get alot of linker errors: ------ Build started: Project: SimpleSample, Configuration: Debug Win32 ------ Compiling... dxstdafx.cpp Compiling... DXUT.cpp DXUTenum.cpp DXUTgui.cpp DXUTRes.cpp DXUTmisc.cpp DXUTSettingsDlg.cpp SimpleSample.cpp Generating Code... Compiling ...Show All
Visual C++ Hello, very new to VS itself, need help on probably something simple.
Hi, I'm used to using visual studio 6.0 and when I usually debugged I had no problems...ran my programs fine. Although, in 2005 when i Debug in the command box it never lets me see my ending result, the command box shuts off automatically toward the end of my program while im testing it out. This is probably a very easy task for an experienced user of VS, can anyone help Thanks a bunch. Thanks alot, It works now! now ...Show All
Visual Studio Team System When do reverse deltas take place?
The TFS FAQ mentions that the server creates "reverse delta" of both binary and text files "asynchronously as a background task". I'm unable to find any other information on how or when this reverse delta creation happens, what factors affect how long it takes, and if it can be controlled. Is there any documentation on this In addition to just wanting to know, I'm interested in understanding reverse delta creation as I am experi ...Show All
.NET Development DAO in C# Express
I am just starting to learn c# (I am from vb.net background) but I am having problems using DAO OpenDatabase and OpenRecordset when using c# express. I am not sure if this is related to database limitation of c# express. I have the following code in c# (which I converted from vb.net): DAO._DBEngine dbEng = new DAO.DBEngineClass(); DAO.Workspace ws = dbEng.CreateWorkspace("", "admin", "", DAO.WorkspaceTypeEnum.dbUseJet­ ; DAO.Databas ...Show All
Visual Basic trying to understand classes, module, subs, functions
I would like to know the differences between a class and a module, and the difference between a sub and a function. I know how to use them. I've been programming for years. But I would like to know the deep details of them so I know where and when to use them. So I can have the most efficient programs. Thanks ah, ok. So a module is good for using just in a project. But a class is good for say a dll. Be ...Show All
