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

Software Development Network >> Chris Smith MSFT's Q&A profile

Chris Smith MSFT

Member List

NodeX
Harriman
mirko03
skapunk60
IBRAHIM ERSOY
Wollmatt
John Mollman
Holger Sachs
jpmartop
jpkuzma
SandieM
WaiL
jfc kvdfhkgjvfhdsgjgchkfghjngfjk
Anindita
Nick Gabello
pmccombs
Mr.Anonymous
Ken Curtiss
lmcatl
faiga16
Only Title

Chris Smith MSFT's Q&A profile

  • Visual C# proxy problem

    Hi all, VS 2003, windows application that uses Internet. I create an application to merge pdf files downloaded from Internet (which give me one file for one page). I'm behind a proxy server. The problem is: when i request a file, the web site creates a temporary file with the page (xxxx.pdf, where pdf are numbers). So these files are also on proxy server and sometimes i have some error because (i think) the page is got from proxy server. How can avoid this problem Turning off the cache of proxy Or from code (c#) Thx   manuel0081 wrote: Is it possible also not cache file from a particular site... This high ...Show All

  • Windows Forms ClickOnce with programmatic updates only

    Hi, I want to deply a ClickOnce app with automatic updates. But automatic updates should be initiated programmatically (through ClickOnce API), not before/after the application starts. Does somebody know how to disable updates before/after the application starts PS. Setting update every 999999 weeks does not look good to me :-) Go to the Publish properties page, and click the Updates button. Uncheck the "This application shoudl check for updates" checkbox. ...Show All

  • Visual Studio How Do You Preview a Report In Design Mode 2005 Beta 2?

    In Visual Studio .Net 2003, you could preview a report in design mode by clicking the Preview tab.  There is no Preview tab in 2005 Beta 2 or no similar menu options.  Is there a simple way to preview a report in design mode without having to run the application   I am working in a VB .Net Windows application.  Thanks. There are two "flavors" of Report Designer. If you are using the Report Designer included in SQL Server 2005, the Preview tab is still available. If you are using the Report Designer included in Visual Studio 2005, you have to run your application in order to previ ...Show All

  • Windows Forms How to set Font Size in code?

    Hi, I am new to C# and have been searching for a simple way to set the Font Size for a textbox control. When I try to set it in the class constructor I'm told it is a read-only property. I've looked thru many help topics but can't find a clear answer. TIA, Karl Fontsize is ReadOnly property but you can change Font Structure with similar code textBox1.Font = new Font (textBox1.Font.FontFamily.Name, 12.4); ...Show All

  • Visual Studio Team System reverse engineering

    I have been trying to reverse engineer a Visual FoxPro (VFP) 6 database with Visio for Enterprise Architects with not much luck. I'm thinking I need a Visio driver for VFP because when I run the reverse engineering wizard I get a list of "installed Visio drivers" to use but VFP isn't on the list and when I use the ODBC Generic Driver I get the warning: "You are using a Visio 'ODBC Generic Driver' to connect with a 'Visual FoxPro' DBMS database. By using an incompatible driver, it is possible that the catalog information retrieved will be incomplete." Can someone help me to find a driver for Visio to use or even with the r ...Show All

  • Visual Studio Team System Bug status in Team System

    In Team System, is there a way to edit the fields under Status   For example Priority is a status that shows up with numbers.  I would like to be able to modify it so the number displays something else, 1-cosmetic, 2 -minor/work around, etc... thanks, aaron Hi How do I download the file and which file I need to download If the file doesn't exists then what do I need to do Thanks ...Show All

  • SQL Server sp_addrolemember inside a trigger

    I'm trying to handle some user management inside a trigger. When I call sp_addrolemember I get this error. sp_addrolemember cannot be used inside a user-defined transaction Is there any way to get around this error I need to assign a custom role based on a variable inside this trigger. Any help is appreciated. Hi, thats nor working not for dynamic SQL nor for an external procedure which is executed from within the trigger. HTH, jens Suessmeyer. ...Show All

  • Visual Studio Team System Suppressing warning for entire ASP.NET project

    Hello: I am trying to set up the development environmont our team will use. There are several code analysis warnings we wish to suppress for the entire project without applying the attribute everywhere in the code. For a class library project you can set the suppressions in the project file for the class library. Since this is shared with all developers the suppressions are consistent. Since a web site project doesn't have a project file there doesn't appear to be a place to specify suppressions that will be shared with all developers on the team. I know I COULD got to each machine and go to the Website | Code Analysis Configuration menu ite ...Show All

  • Windows Forms Need help...

    Well, i am still very new in this programming thing, and would like to know something.. i have written a small app that does calculations from say TextBox1.text and TextBox2.Text and displays it to Label1... Currently i'm doing this by typing in the first "textbox" line and the "second" textbox line, after that i have to push the OkButton.. My question is : How do i get the label to update as im giving my input into the textboxes Please advise Hi Pohm, what I believe you need to do is add an event handler for each of the text boxes for the KeyPress event. Click on one of the text boxes and then open ...Show All

  • Smart Device Development VS2005, adding an InputPanel to CF custom control.

    I have derived from DataGrid to make an editible datagrid.  All is well and it appears in designer and I can add it.  I decided that I want popup input panels so I add Microsoft.WindowsCE.Forms to the reference list and add the 'using' tag.  As soon as I decare InputPanel ip; in the class, when I try to go back to main project and view it in designer ( the custom controls are already in place), it claims that my class no longer has the property 'TableStyles'.  In fact it still does, nothing has changed to affect that as far as I see.  It is still derived from datagrid.  I dont see how the input panel object shou ...Show All

  • Windows Forms DataGridView Flicker not suppressable

    Hello, a read-only DataGridView flickers entirely when updating the style members of a single cell. for further info pls. see my previous post at: http://www.windowsforms.net/Forums/ShowPost.aspx tabIndex=1&tabId=41&PostID=19859 Even if there is no documentent telling that the DatGridView is suited for realtime applications I rather treat this as a design error than a bug. Regards, Martin ...Show All

  • SQL Server Best practice question

    I have a aspx page that needs data from sqlexpress. When I installed sqlexpress, I installed it with "mixed-mode" security. When a user visit's my page, by default the username is IUSR_MyMachine. So, I added this user to the SQLServer2005MSSSQLUSers$MyMachine$SQLEXPRESS group. I have a connection string that looks like: "Data Source=MyServer\sqlexpress;Initial Catalog=MyDB;Integrated Security=True;Pooling=True" At this point I can go on my merry way and log in and do my thing. My question is this, is this the right way to do this Should I be adding IUSR to the sql group Should I set up a sql user instead What's the best practice ...Show All

  • .NET Development WSE 'Bad Key' Exception

    This error has been driving me mad for weeks...Hope someone can help me out here...Thanks in adv... I am sending a soap msg encrypted using WSE 2.0 sp2, while the 'bad key' exception just keep coming out. I thought it has something to do with the certificate permission for the ASPNET accout which is generated by the .net framework automatically after it starts. However, the error still exists after I added the Read permission for that ASPNET account to the certificate used for encryption. help..... Hello Jahanzeb, Did you create a certificate using the switches below makecert -sk MyCustomCert -sky exchange -r -n "CN=My Cust ...Show All

  • SQL Server LTM help file

    Sorry in advance if this is off topic...please advise In the past, I've used LTM (Local Test Manager) for testing a OLE DB providers conformance and had much success with it. The tool shipped in older versions of the MDAC SDK. I've obtained v 2.70 of LTM.EXE from the MSDN platform SDK but there is no online help (LTM.CHM) Anyone know where I can down load a copy Have you tried downloading Microsoft Data Access SDK 2.8 from http://www.microsoft.com/downloads/details.aspx FamilyID=5067faf8-0db4-429a-b502-de4329c8c850&DisplayLang=en Thanks Suroor ...Show All

  • SQL Server Calling GetVirtualInput within SetUsageType method causes error 0xC0047041 on return

    I've been trying to create an async transform component and one of the things I'd like to do is add a new output and/or columns to existing outputs for each input column that is selected. I thought that the SetUsageType method would be a good place to do this as it will allow me to delete output's and columns based on the user's selections but, despite the fact that my code doesn't actually throw or cause errors, when I return from the SetUsageType method I'm informed that error 0xC0047041 (DTS_E_OBJECTNOTINHASHTABLE) has occurred . I pared the method down to an absolute minimum and found that a call to GetVirtualInput is enough to push it o ...Show All

©2008 Software Development Network