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

Software Development Network >> Mary Lingel MSFT's Q&A profile

Mary Lingel MSFT

Member List

Zsolt Soczo
raptorjax
Peter B
mx123
vino-msdba
bmilano
Giampiero Saracino
James Terwilliger
raina
chantillylace
MarcioMVM
afields2
shaktipravesh
Heathcliff
ChopKiwi
HOBO59458
Nathani
arstacey
Riki0410
Markus Berthold
Only Title

Mary Lingel MSFT's Q&A profile

  • Windows Search Technologies Feature request: "To" field and word-wrap for plain text

    I'm using WDS for quite a while now, but there are two things missing. When I search for e-mails I sometimes miss the column "To", there is only the column "From". There is to my knowledge no way to add the column manually. The other thing is that e-mails in plain text (ASCII) are not shown "word wrapped". Long lines of text run off the righthandside of the screen. You'll have to scroll to read the text. Just my 2 cents... Robert In my language it's "aan:" I need to specify, "to:" doesn't work. WDS seems to know Dutch Robert ...Show All

  • Visual C# Help with System.Array

    I have a System.Array object with assorted types in the different elements.  How do I work with these elements.  For example, if the result of arr.GetValue(0) is actually a Double[], how do I access the individual doubles   Or suppose the result of arr.GetValue(1) is another System.Array object.  How do I assign it to a System.Array typed-variable OK, I got it.  Duh, you just downcast it, like this: Double[] darr = (Double[])arr.GetValue(0); ...Show All

  • Windows Forms masked TextBox

    i use mask textbox for thousand seperator and i use 000,000,000,000,000 mask but please help me how can i do following: 1- i want the number length dynamic and no limited 2- when no number enter or the lenght is short i want to omit extra commas. From what I've seen of the masked text box, you may need to impliment your own solution to achieve this. Just handle the KeyPress event of your text box, and set e.Handled to true if Char.IsDigit and Char.IsControl both fail on the char. This will not offer commas at all, but will offer numbers of any length you like. ...Show All

  • Smart Device Development MFC CTreeCtrl on Smartphone

    I create an MFC app using VS2005 for Smartphone. A CTreeCtrl (sitting on a CFormView) is not processing any keyboard input. For example, pressing the arrow keys or Action key does not expand/contract nodes. Am I missing something simple By default, CTreeCtrl on Smartphone has limited navigation: Expand/Collapse node = Action Key Move focus = Up/Down Check/Uncheck box = <nothing> A sugeestion is to override this for Smartphone so that: Expand/Collapse node = Left/Right key Move focus = Up/Down Check/Uncheck box = Action key Hope that helps. ...Show All

  • SQL Server Enterprise Manager error

    After installing Enterprise Manager on a new HP laptop running XP Pro sp2, I get the following error message when to trying to "Return all rows" from a table.  "Provider cannot be found. It may not be properly installed." Everything I read on the internet says to install or reinstall Jet 4.0 sp8, but this has not solved the problem.  I've also installed the latest MDAC...MDAC 2.8 SP1 on Windows XP SP2, and ran the compchecker, everthing checks out ok.  Any ideas Thanks T.C. I have a new Sony VAIO laptop and am running XP Pro sp2 and get the same error when trying to open a table in any ...Show All

  • Visual C++ Initializing statics in native library

    Hello. We have a native C++ .lib that we have created that uses a const string in it. The string is initialized to "". We have successfully linked this native library to a managed Windows C++ Forms project and have code in the form to instantiate one of the objects defined in the native library. However, when the Forms application starts, it attempts to instantiate the const string in the native library and a _CrtIsValidHeapPointer assertion fails. Has anyone seen this behavior Admittedly, I am new to .NET and have been looking for a compiler switch that might address this issue. Does anyone have a suggestion how we migh ...Show All

  • Visual Studio 2008 (Pre-release) WPF & VS2005 LIVE

    Hi there, is there any version of WinFX compatible with Visual Studio 2005 Live Thanks, Dmitry You mean with VS2005 final No, at the moment you have to use Beta2 of VS if you want to develop for September CTP of WinFX. In a couple of weeks there will be a WinFX version for .NET2.0 also. We have to wait... ...Show All

  • Visual Studio Express Editions How do I read and write to a SQL database.

    How do I read and write to a SQL database I have VB Express installed, and I just want to have like a structure in my database like this: Name Age John 18 You see But, how do I do that Is there any tutorials on this or hi, you will find a good one in this link lesson 8-9 http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=256005&SiteID=1 you will find other tutorials here in this thread just follow the links http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=256005&SiteID=1 hope this helps ...Show All

  • Visual Studio 2008 (Pre-release) Create Aqua Gel Buttons using Expression Interactive Designer

    http://spaces.msn.com/viliescu/blog/cns!A7CD34FAB0459777!252.entry ...Show All

  • Visual FoxPro CA

    Hello Guys Can someone redirect me to a page where i could find a simple sample of CA (Native) or if one could send me an email. Please don't use the ca class if you would send me an email. The problem is when i use an access database, it works fine but when i use a vfp database, it shows me just one record. Please help me out with this too. Jitendra Shahani shahani.jitendra@gmail.com You will find some articles on CA in the article section at www.foxite.com . Registration while required is freen. ...Show All

  • Visual Studio Exec task with ContinueOnError=true

    I'm using an MSBuild build script as part of a continuous integration scenario. Part of the script is a target that runs unit tests with NUnit, using a batched item group that specifies test assemblies. The target contains an Exec task that runs the test runner application. Since I want to run all of the tests, even if some of them fail, I specify the ContinueOnError option on the Exec task. The problem is that even though some tests fail, MSBuild sets the DOS errorlevel is set to 0 after the build finishes, which screws up the continuous integration server (it thinks the build succeeded). If I change ContinueOnError to false, then it sets ...Show All

  • .NET Development .NET 2.0 Remoting Versioning HELP!!

    We have a Remoting solution that we designed. We want to add methods to our interface to expand the functionality and was wondering what the best plan of action was on implementing this to have the greatest success with backwards compatibility ...Show All

  • SQL Server SSIS Connection Object and Expressions

    I have been writing a custom source adapter that uses a file connection within the connection manager. If I hard-code a specific file then the component works. However if I use a file connection that has an expression defined which updates the connection, for example when you have a for-each loop looping over a set files. The file connection doesn’t seem to re-evaluate expression each time you access the file connection via the code. Is there something that I am missing or is there a bug Where is the expression defined On the connection manager within the dataflow If so, it will only be evaluated once bef ...Show All

  • Visual C++ C++ Support Library in Visual C++ 2005 Beta 2 (Express edition)

    I have Visual C++ 2005 Beta 2 (Express edition) installed. In the help for VC++ I found a topic about the “C++ Support Library”. It requires some header files ( <msclr\lock.h> for example) from a folder named “msclr”. Unfortunately I cannot find those headers anywhere.   My question is: Is the “C++ Support Library” part of Express edition of VC++ 2005 Beta 2 That is correct. I just took a look at my VCExpress installation and it is located at D:\Program Files\Microsoft Visual Studio 8\VC\include\msclr on my machine Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • Windows Forms Change ColumnStyle for all the columns

    Is there a wya to change the Column Style for all the columns the datagrid   The no of columns in the datagrid change dynamically. Is there  a way i can specify columnstyle for all the columns in the datagrid instead of adding a column style for each column. ...Show All

©2008 Software Development Network