Joannes Vermorel's Q&A profile
Windows Forms Hos to add an rtf license agreement file to my setup package
I tried adding an rtf file to my setup package, I created the license.rtf file, I added a License agreement dialog to my setup project, then I put the license.rtf under Application folder and from my License agreement dialog box I mapped this&n ...Show All
SQL Server Include manual inputs
Is there a way to allow a user to manually input values in one of the columns in my report and then also allow other columns to rely on that value in their calculations I'm trying to keep away from having to create a web interface for th is....I may have no choice in the matter but was hoping SSRS 2005 would have an open column param or something that would somehow allow this inline inputting of values for a column...maybe when you load the r ...Show All
SQL Server SQL Server does not exist or access denied
Hi, I have developed a small application using VB6 on Windows XP. Following is the code snapshot. I have added Microsoft ActiveX Data Objects 2.1 Library through Project Reference for ADODB Connection. Public con As New ADODB.Connection Public Sub Main() Set con = Nothing With con .CursorLocation = adUseClient .ConnectionString ...Show All
Visual Studio Team System How to find DLL version
Hi, I am working on a project that requires to grab a DLL version programatically. The only input is the path to the DLL file (eg. C:\...\MyDll.dll) and the output would be the version (either File Version or Product Version) of that dll file. If anyone has some info on how to grab this piece of data from a DLL file, I'd appreciate it if you could share it with me. Thanks, - A I found my answer at this ...Show All
SQL Server SQL 2005 Database Engine setup failure
I am having a problem getting the databse service installed. My SQL Beta version did not uninstall smothly and I am trying to get the production release to uninstall. I keep getting the install to fail with: "C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\setup.exe" finished and returned: 1603 I have been able to install everything from the SQL 2005 suite (ie. reporting services, workstation components, etc) but I can't get the databas ...Show All
Visual Studio Dynamically generate and "install" DSL
Hallo, I'm currently working on a DSL for a Component-Based Software Architectures. I've created a DSL for the basic entities and their properties. Now I can design "childs" of the DSL (e.g. an EmailEntity) and add different properties in the created designer. What I want to do next is to dynamically create a new DSL from the model I've drawn in my designer within the debug instance (where I have drawn my model). When I now ...Show All
Visual Studio Debugging multi-threaded operations problem
You'll love this one... I've ran into a rather odd problem, both in the application I'm in the process of developing and in a test project I threw together just to replicate the issue. When debugging code that is run on a thread other than the main execution thread the non-main thread will exit for no apparent reason. Here's the kicker... It only happens if you have the autos variable window selected i.e. the problem will not show if you're view ...Show All
SQL Server Is this connection string formated correctly?
Data Source=**COMPUTERNAME**\SQLEXPRESS;Initial Catalog=*CAT NAME*;User ID=*USR*;Password=*PASS*;Min Pool Size=5;Max Pool Size=10000;Connect Timeout=5 I can't connect to the DB. Everythime I try to connect to a page within my site that uses DB data I get an: " The resource cannot be found. " error. " The resource cannot be found. " error is not raised by sql server db connection driver. So there is someother place in ...Show All
Visual Studio Express Editions A Junction Table and Insert / Update Query
Question. On myForm The intention for the form is to add, edit and delete Locations, also to add new or exsisting contacts to the selected or newly created location in this form. Currently i can add location's but only one contact per location. I'f setup the form with textboxes, comboboxes and Panel's. I would like to create the posibility for the Locations in the LocationTable to have 0, 1 or more Contact(s). But i would also lik ...Show All
Visual Studio Team System Custom workitems problems in Team Foundation Server Beta 3 Refresh
I have gottenTFS Beta 3 upgraded to the Beta 3 Refresh. Everything went pretty smooth, but i am having problems with the custom workitems. Basically what i have setup is the a SubSystem dropdown has changed the bug is assisgned to a certain user. This worked fine in the Beta 3 version but will not work in the Bets 3 Refresh. Below is how i have the conditon set. I go this by exporting the workitem type from TFS. &n ...Show All
Windows Forms Problem Deleting row in DataGridView in VB.NET 2005
Hi. I am using a DataGridView control, when I select a row in this control and type "Supr" key, the row that I selected is deleted of DataGridView Control. I want to display a Messagebox after typing "Supr" key asking: "Are you sure you want to delete this row ", if user select "No" button, the row shouldn’t be deleted of DataGridView, but if user select "Yes" button, the row should be dele ...Show All
Visual Studio Express Editions Problem porting a Visual C++ 6 application to Visual C++ 2005
I'm trying to migrate a project made on Visual C++ 6 to Visual C++ 2005, but even with no compilation errors, the application don't work as the VC++ 6 project. My application is a project about API Hook, and it's not working on Visual C++ 2005. What can I do to maintain compatibility Hi! You need to provide more information about your problem. Which library you use - MFC, ATL, WTL, STL... or clean Win32 API What function not working ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Single Skeleton Multiple Skins (Is it real with .X format?)
Hi 2 All! I want to apply the same animations to the different characters using the .X format for storing separately skins and animations. And I have some questions: 1. Does the .X format support such possibility 2. Do You know any exporter from 3DS Max or Maya that can separate skeleton and skin Thanks beforehand. Do you use Direct3DX for your meshes and animations Yes. There is no ...Show All
Smart Device Development COM Component, UPnP & Web Services on Mobile Devices
I want to have your input on the following scenario that I am facing: Objective : Development of a “Service” for a mobile device which provides various communication & interfacing options to a user Planned Environment/Platform : Windows Mobile 5.0 devices (to make use of the new managed APIs) running .NET CF 2.0 (primarily because of COM Interop support) Invokers of the Service : Both Native and Managed Components/Ap ...Show All
SQL Server Give permissions programatically with c#
Is there a way to give permisssions to users with c# to databases, I also must be able to add users to roles,etc. Thanks Yes certainly. SQL Server Management Objects (SMO) allows you to create all security objects (logins, users, roles, certificates, {a}symmetric keys etc.). All securable objects have Grant(), Deny(), and Revoke() methods, and there are various Enum methods on classes to find out how the object has been secured. Michiel :: ...Show All
