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

Software Development Network >> David Pugh MSFT's Q&A profile

David Pugh MSFT

Member List

Nir Floripa
rschiefer1
David d
ImallocEx
Raghavendra RAV
Syed
chicagoclone
jackie
Brian Love
Manish 3177
woom
cwolf
Asim A
Nirvana Pine
Kong-How
Jon77
MarcBey
Azath
Markus Hoesli
Mr. Bungle
Only Title

David Pugh MSFT's Q&A profile

  • Visual J# Creating a file in ASP.NET 2.0

    Hi; I have an ASP.NET app in C# that calls my library in J# and that library creates a file. The problem is the file that is created gives no rights to IUSR_JASMINE (computer name is jasmine). The directory the file is created in has read permissions for IUSR_JASMINE. What is going on thanks - dave Hi, Few queries here... In which account the C# app is running Is that an Admin account And what all privileges/permissions ...Show All

  • SQL Server SQL Server 2005 express maximum database quantity and size?

    I whant to now how many database of 4GB is alow in 1 instance of SQL Server 2005 express. Is it 1 of 4GB, 2 of 2GB etc... The 4GB maximun is it for the instance of the server. Tanks ...Show All

  • Windows Forms TableAdapter insert/update/delete generated on a table, but WONT on a view

    I am using VS2005 and adding tables and views to my project using "Add data source". It auto generates the .xsd file for me with all the items in there. I started off just putting views in there from my database, then when i rightclick -> configure -> advanced options, and check "Generate Insert, update and delete statements", click ok and next, the "Create methods to send updates directly to the database" ...Show All

  • Smart Device Development A multithreading question

    Hi there, I'm using a printer dll (PrintCE.dll) to print into a mobile printer I have via bluetooth. Now everything worked well until I wanted to have a nice error message (and a quick one) if the terminal can't connect to the printer (if it's offline for example), What happens today is that it takes more than 60 seconds until it finally give up the try and gives the error. so what i've done is i've put the start printing procedur ...Show All

  • Visual Studio Team System Can the Project Portal web site upload documentation?

    Hello, Before I make the effort of installing TFS, I was just have a question about the project portal system. Is it possible to set up folders for documentation, and give access to this folder to external people (eg development partners or even clients), through the project portal web-site Also, I'd like to allow these external people to create their own documents, or edit existing ones depending on access rights allowed (certain users can rea ...Show All

  • Windows Forms DataGridView in a modal dialog questions

    Hello, When using the DataGridView in a modal dialog, (I'm using the DataGridView in a generic lookup dialog) I'm having a couple of issues I hope someone can help me with: - 1 - I have FullRowSelect for my selection mode. I have two buttons assigned to the typical Accept and Cancel button properties on the form. Hitting ESC works for cancelling out of the form, but hitting enter causes the selected row in the DataGridView to move down ...Show All

  • Visual Studio Team System Adding fields under states vs. transitions ?

    When customizing the work item templates (e.g. bug.xml), I found out that adding a field (e.g. Resolved Date) under state "Resolved" has the same effect as having the field under transitions (e.g. "Active" to "Resolved"). If I have the same fields need to be tracked whenever an item enters a state, wouldn't it be more convenient to just add the fields under the state rather than the various transitions (there could ...Show All

  • Windows Forms Control.Invoke blocks on WaitOne while UI Thread continues to run?

    I have an application where a background thread is calling Invoke() on a control owned by the UI thread. I'm seeing a problem where Invoke is blocking indefinitely on a WaitOne operation while the main UI thread is still processing the queue (i.e. the UI is still responsive). I'm currently able to reproduce the condition relatively easily and believe it might be a race condition related to the UI thread disposing the control while Invoke( ...Show All

  • Visual C++ LPCTSTR

    Hello all, I've got another question.  I'm using a bit of code written by Nishant Sivakumar ( http://www.codeproject.com/tips/CSMTPConnection2.asp ) to send an email programmatically.  The code is relatively straightforward and there are no problems during compile EXCEPT... Error 3 error C2664: 'ATL::CMimeHeader::SetSender' : cannot convert parameter 1 from 'const char [19]' to 'LPCTSTR' SetSender is a member of CSMTPConn ...Show All

  • Visual C# Extendable Enums??? Java-Like

    Is there a way to create enum classes so that you can embed more information than just an value in an enum Specifically, I would like to associate an integer and a string with each enum value. You could use attributes to embed this kind of information, for example: public enum MyEnum { [Category("My Category 1")] Value1 = 1, [Category("My Category 2")] Value2 = 2, } For ...Show All

  • Visual Studio Generic argument types

    Hi again, Is it possible at all to use generic types, like List<T>, as an argument type Example declaration : <Argument Name="Test" Type="System.Collections.Generic.List&lt;T&gt;, mscorlib, Version=2.0.0.0" /> At compile-time and while registering I get no error, but when I try to use the Recipe that uses this argument, I get : System.TypeLoadException: Could not load type 'System.Collections.Generic.List ...Show All

  • Windows Forms Adding controls in windows datagrid

    Hi, I am using visual studio.net 2003. I want to add linklabel, button and combobox control in my datagrid. And for this I made separate class by overriding " DataGridColumnStyle" class. And then this control is a part of my grid. Problem: If I have 10 rows in datagrid then at the load time grid will appear as plain with no control display.when i select a button cell then button will be display for that cell only. If I click on some other c ...Show All

  • Windows Search Technologies Address bar - locked

    my address bar will to type in the full name of a web site, but once complete it will not pull up the site, it stays on the main msn page. Like typing in www.miamidolphins.com - but while typing it will drop down and offer a list of sites, if i pick one of those I can go straight to the sight or choose from my favourites. but to actually type a new site name in the address bar and click go - it goes no where. how do I solve this i do have ...Show All

  • Visual C# TCP send formatted messages

    hi,,, while i was making some tcp server client applications i found my messages sometimes wree bunching up,, and i have some snsitive data that causes errors if my data is corrupted,, so i have read in some places that is good when u sedn a tcp message to di it this way: [type][lenght][data] but,,,, how can i do it ... and then how to read it when i receive it ....... thx mig16 I don't know what exactly is ha ...Show All

  • SQL Server How calculate SMO.Transfer progress?

    I have work code who transfer database using SMO.Transfer object. This code start my transfer and subscribe my event handlers. I have such problem: DiscoveryProgress - does not approach. Maybe need use additional options m_tr.ScriptingError += new ScriptingErrorEventHandler(m_tr_ScriptingError); m_tr.ScriptingProgress += new ProgressReportEventHandler(m_tr_ScriptingProgress); m_tr.DiscoveryProgress += new ProgressReportEventHandler(m_tr_Disc ...Show All

©2008 Software Development Network

powered by phorum