About 347 results
Open links in new tab
  1. C# Unique Random Integer Create - social.msdn.microsoft.com

    Dec 28, 2009 · Of course in the range of 0-10 you cannot get unique numbers.If you want to use this unique number and store it in DB then better use the Identity property of DB itself to generate unique …

  2. C# console application App.Config not adding keys.

    Jun 27, 2012 · Hi guys, I have a C# console application project that I'm trying to get off the ground but it seems the simples t of tasks are impossible to do! I added a config file to my solution and am trying …

  3. Dynamic memory allocation in C#? - social.msdn.microsoft.com

    May 15, 2009 · Dynamic memory allocation is allocating memory at runtime. What you should do here is declare the arrays as null like : public Class2 [] c2 = null; and when next button is clicked, allocate …

  4. Mimicking Vfp Grid into .NET/C# Grid - social.msdn.microsoft.com

    Jul 10, 2010 · Any idea how to mimic the GRID behavior of visual foxpro into C# GRID, in VFP just put the table alias in grid datasource and everything will work like a charm even if you got millions of …

  5. criar consulta com sql no c#

    Jan 12, 2008 · Criei um form para consulta deste dados, onde exite um ComboBox para selecionar o nome, e uma textbox para cada campo gostaria que ao selecionar o nome na ComboBox, as textbox …

  6. Webcam access in c# using system calls only works once per restart

    Sep 23, 2013 · I am working in C# using some system calls to access webcam data. I have code in place that will do so, but only if it is the first time the webcam has been activated since the last …

  7. Can someone knowing C++/C# please convert this code to Visual …

    Feb 2, 2017 · So the right answer for this question would have been a conversion of her C++ Code into Visual Foxpro code so that all Visual Foxpro programmers would have benefitted as they would have …

  8. c# saving text and displaying it in message box in multiple lines

    Feb 23, 2016 · Hello All i been trying for the last 1hour to try and get my program to save progress results insted of displaying loads of message box in the process of the program so i did something …

  9. How to handle ObjectDisposedException in C#?

    Nov 25, 2016 · CTDocumentWriter.WriteReportDoc (CompatibilityID);->Here CTDocumentWriter is a class from project name "Compatibility" as shown below.

  10. C# - Convert the .doc/.docx to .rtf or .txt when choosing the file in ...

    Jan 8, 2016 · Is there a possibility to choose a Microsoft Word document (.doc or .docx) in openFileDialog and then it will be converted to .rtf or .txt before being loaded into RichTextBox1? I …