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

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

Sauvere

Member List

bauann
scott xxxxxxxx
sammour80
jadnhm
Chris Carr
Deepak Puri
Roman Koreshkov
JoeCousins
Haider Naqvi
SunnyRon
wkdlvgud
Citco
jasper182
beginner.net
A.b.cn
scott5914
Wilson Thampi John
hswear3
Barry Dyson
Mikmaq
Only Title

Sauvere's Q&A profile

  • Visual Studio Tools for Office Pre-requisites and Office SKUs

    We are working on a POC for one of our clients. The client also tried to install and run VSTO 2005 but is receiving the error message about needing to install SP1 and/or vstor.exe. After some research here on the forum and Google Groups, we are pretty sure this is because he has Office 2003 Standard and not Office 2003 Pro. Can someone please point me to published information @ Microsoft about accurate pre-requisites for (1) developing VSTO 2005 solutions and (2) deploying the solutions (1) After reviewing http://msdn2.microsoft.com/en-us/library/54ds2za4.aspx , my first impression is that because office 2003 Standard includes Excel 20 ...Show All

  • Visual Studio Is the report viewer control freely redistributable?

    I have seen similar information on some other posts, but not specifically this question.  Sorry if this is a re-post. Is the report viewer control (and the LocalReport class) freely redistributable   If not, what is the licensing agreement Thanks, Ken ...Show All

  • Windows Forms diging dataset with xml in it

    Hi, I am reading an xml doc into a dataset but I cant figure out how to get to an element of xml within the dataset. After following 2 lines, I am lost. Unfortunately I CANT use xpath:( DataSet ds = new DataSet(); ds.ReadXml(xmlpath); How do I access the: "Name" value      as in this line  <Panel Name="FontNames"> "Default" valu ...Show All

  • Windows Forms Rant: .Net Code Access Security Sucks!

    As a certified ISV VB developer who has made a living over the past ten years selling WinForms software, I have seen the onerous stuff in both the VB6 and the VB.Net environments. In VB6 we had the DLL hell problem. Deployment could be difficult if the buyers of our programs had old versions of various Microsoft DLL's. But DLL hell is a minor pain compared to .Net Code Access Security (a.k.a .Net trust or CAS). The people who conceived the CAS concept apparently never implemented software in large shops which use fat client WinForm apps running from a Windows server share. For example, the vast majority of the software comprising the E ...Show All

  • SQL Server Authentication Extension - Permissions

    Hello all, I've implemented the custom Forms security extension and I can successfully log on to Report Manager and share cookies with an ASP.Net application. However, I'm getting the following error message when I try to deply from VS 2005 and when I claunch Report Builder: The permissions granted to user '' are insufficient for performing this operation Anyone come across this before Thanks in advance. chucho If you put breakpoints in your security extension, you should be able to: 1. find out which call to AccessCheck is failing 2. find out which call to GetUserInfo returns an emp ...Show All

  • Smart Device Development VS 2005 beta2 - Referenced package not found

    I have just installed VS 2005 beta2. I created a smartphone application with a simple textbox and when I try to run (F5) using emulator I get a deploy error. The output log shows: SMP1 -> C:\dev\SMP1\SMP1\bin\Debug\SMP1.exe ------ Deploy started: Project: SMP1, Configuration: Debug Any CPU ------ Referenced package not found. ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ========== ========== Deploy: 0 succeeded, 1 failed, 0 skipped ========== Any ideas Hi, try to rename directory C:\Documents and Settings\<user name>\Local Settings\Application Dat ...Show All

  • SQL Server is it possible to have variant condition clause in procedure?

    i want to use OLEDB to build a COM for my app in the case, i want to execute a select statement which the where-clause is variant. ex, select * from db1 where code='abc' select * from db1 where name='mike' As it's very difficult to change sql-command in oledb, i want to build a procedure like this, create procedure viewDB @filter CHAR(20) as select * from db1 where @filter go but failed! i tried EXEC( select ), but i cant get the variants when building a oledb consumer No, you cannot pass the whole WHERE clause as a parameter. You could pass only values. In your case if this is predefined set of the t ...Show All

  • Visual Studio Team System [WebTests] App.config in Testproject can not be referenced

    Hi all, I also have a problem using an App.config file in connection with Web Tests. I have looked at all threads concerned with this topic in this newsgroup before but non of the resolutions worked for me unfortunatly. Here is my problem: I would like to reference an App.config file from my web tests for several reasons: - I am using the enterprise library building blocks and I need to set some configurations in the App.config file. - I would like to read out a Connectionstring from the App.config file. The problem I am running into seems to be quite simple: it does not pick up the App.config file in my test project when ...Show All

  • Visual Studio Express Editions Snap to Grid and Show Grid do nothing

    I've set SnapToGrid and ShowGrid both to True in the options for Windows Form Designer, yet I dont see a grid and no snap is activated. I've played with the grid size and this has no effect. I've checked to be sure that the LayoutMode is SnapToGrid also - no help. Any ideas   OK - it seems I had to close ythe form and re-open it for the changes to take effect. Please ignore this question. ...Show All

  • Windows Forms Combo box with treeview

    Are there any sample code how to create a combo box control with treecontrol being dropped down as the combo expanded. WinFormsUser wrote: The following is the method in my control that does the job. Tell me if you want me to send you the code for the entire control. I don't know how to post it on this site yet. Maybe the moderator that reads this will let me know :) you can paste your code in a word ,and then copy the code in the word to paste here,then the code will show more clearly. and this web ...Show All

  • Visual Basic Tab ImageIndex problem

    I have created a ImageList1 and it has one (1) image in it. I then associate the image list with the TabControl1. For some reason, the image does not show on the tabpage1. What am I doing wrong Below is the code. Thanks in advance for your help. William Public Sub AddDWG() Dim AcadDocs As AcadDocuments Dim Document As AcadDocument AcadApp = StartCAD() AcadDocs = AcadApp.Documents For Each Document In AcadDocs Dim myTabPage As New Windows.Forms.TabPage() myTabPage.ImageIndex = 0 ...Show All

  • Visual C# (S|AS)yncronous process & Exited event

    Im trying to start a process asyncronously and then run other code, but use the System.Diagnostics.Process.Exited (or other method) to go back and restart it if it closes. this is waht i came up with, but exited doesnt get called even if i close the program (notepad) that is started public class pcntrl { private System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo(); private System.Diagnostics.Process cmd = new System.Diagnostics.Process(); public pcntrl( string filename, string args) { this .psi.FileName = filename.ToString(); this .psi.Arguments = args.ToString(); } public void start() { this .cmd.Enab ...Show All

  • Visual Studio Changes in Upcoming Release

    We have a team working on a project and are using a mix of local VSS users and users using the web client. There were several bugs in the the Beta 2 (which is what we are using).  Supposedly, the worst of them have been fixed, and the functionality has been extended.  To save three weeks of waiting, would it be possible to answer the following questions about remote functionality in the upcoming VSS: 1. Does it reliably get the latest version when asked to or when checking out a file 2. Can I do normal source control things like:    - Diffing my changes before checking in    - Seeing the history ...Show All

  • Visual Studio Team System Submitting Work Item via Web Service API getting registry error

    When we submit a Work Item to the TFS web service API, the following exception string is returned: "The following error occurred:Access to the registry key 'HKEY_CURRENT_USER\ Software\ Microsoft\ Visual_Studio\ 8.0\ TeamFoundation\ Servers' is denied." We have not encountered this before because (we think) previous calls have been using the local web service instance from Visual Studio 2005. We guessed this passes credentials. We also guessed this error is because the service (now on a remote server) is acting under IUSR or ASPNET. We tried changing the permissions to the Registry branch to include IUSR and ASPNET but ...Show All

  • Visual Basic RTF to HTML conversion Help required

    Hello All, I need to convert RTF text into HTML to send email in HTML format, for my VB.Net desktop application. By using following class, it gives me HTML of given RTF text, retun HTML will Append in a StringBuilder, which generates HTML file. After Append() of return HTML in StringBuilder, it can't append any other string in StringBuilder object. Thats why HTML file created by StringBuilder object can't contain complete text. Problem is in RTFConverter class but I am unable to find out problem. Any help will be highly appreciated. Thanks '****************** RTF to HTML Converter Class ******************** Public Class RT ...Show All

©2008 Software Development Network