¡@

Home 

c# Programming Glossary: still

Create Excel (.XLS and .XLSX) file from C# [closed]

http://stackoverflow.com/questions/151005/create-excel-xls-and-xlsx-file-from-c-sharp

but I would like to control the output formats. EDIT I am still looking at these to see the best alternative for my solution... to easily work with Excel data. ExcelLibrary seems to still only work for the older Excel format .xls files but may be adding..

How to properly clean up Excel interop objects

http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects

Although this kind of works the Excel.exe process is still in the background even after I close Excel. It is only released.. this question Excel does not quit because your app is still holding references to COM objects. I guess you're invoking at..

How to stop BackgroundWorker on Form's Closing event?

http://stackoverflow.com/questions/1731384/how-to-stop-backgroundworker-on-forms-closing-event

the FormClosing event. Set e.Cancel true if the BGW is still running and set a flag to indicate that the user requested a..

Dependency Inject (DI) “friendly” library

http://stackoverflow.com/questions/2045904/dependency-inject-di-friendly-library

consumer of the library is using no DI the library should still be as easy to use as possible reducing the amount of work a.. hope it's clear how it would provide proper defaults while still making extensibility discoverable. share improve this answer..

Best way to copy between two Stream instances

http://stackoverflow.com/questions/230128/best-way-to-copy-between-two-stream-instances

and this is an implementation detail subject to change still sequences reads and writes it just doesn't waste a threads blocking..

How to detect Windows 64-bit platform with .NET?

http://stackoverflow.com/questions/336633/how-to-detect-windows-64-bit-platform-with-net

IntPtr.Size and if you are running in a 32 bit process you still have to call the Win API function IsWow64Process. If this returns..

.NET String to byte Array C#

http://stackoverflow.com/questions/472906/net-string-to-byte-array-c-sharp

if the string contains invalid characters because you can still get the data and reconstruct the original string anyway It will..

Use of Application.DoEvents()

http://stackoverflow.com/questions/5181777/use-of-application-doevents

user interface is gone. But your code didn't stop it is still executing the loop. That's bad. Very very bad. There's more..

When to use struct in C#?

http://stackoverflow.com/questions/521298/when-to-use-struct-in-c

the heap. Internal to the Dictionary class Enumerator is still a value type. However as soon as a method calls GetEnumerator.. and an OnResize event I added to the source however still impressive to fill 300k integers while resizing 15 times during..

Proper use of the IDisposable interface

http://stackoverflow.com/questions/538060/proper-use-of-the-idisposable-interface

DbConnection . If the person forgot to call Dispose we can still save their bacon We still have a way to call it for them when.. forgot to call Dispose we can still save their bacon We still have a way to call it for them when the garbage collector finally.. resources because they might not be there anymore while still freeing unmanaged resources. The standard pattern to do this..

What is the difference between Decimal, Float and Double in C#?

http://stackoverflow.com/questions/618535/what-is-the-difference-between-decimal-float-and-double-in-c

both encoded within the value that's what makes decimal still a floating point type instead of a fixed point type. The important.. value you'll actually get an approximation to 0.1. You'll still get approximations when using a floating decimal point as well..

Is there a way to check if a file is in use?

http://stackoverflow.com/questions/876473/is-there-a-way-to-check-if-a-file-is-in-use

catch IOException the file is unavailable because it is still being written to or being processed by another thread or does..

C# Finalize/Dispose pattern

http://stackoverflow.com/questions/898828/c-sharp-finalize-dispose-pattern

2008 I have been working on this for a while now. And I am still confused about some issues. My questions below I know that you.. that make calls to unmanaged resources. Would you still need to implement a finalizer However if you develop a class.. Also note that even though B doesn't have a finalizer it still calls SuppressFinalize to correctly deal with any subclasses..

Cannot find the memory leak

http://stackoverflow.com/questions/13355496/cannot-find-the-memory-leak

caching. I used the code from the blog to rectify this. Still memory is not released although rate of consumption did go down...

Distinct not working with LINQ to Objects

http://stackoverflow.com/questions/1365748/distinct-not-working-with-linq-to-objects

I have even tried overriding Euals method in Author class. Still Distinct does not seem to work. What am I missing Edit I have.. am I missing Edit I have added and operator overload too. Still no help. public static bool operator Author a Author b return..

How to remove illegal characters from path and filenames?

http://stackoverflow.com/questions/146134/how-to-remove-illegal-characters-from-path-and-filenames

0 Regex.Escape regexSearch illegal r.Replace illegal Still the question begs to be asked why you're doing this in the first..

How to create initializer to create and migrate mysql database?

http://stackoverflow.com/questions/15796115/how-to-create-initializer-to-create-and-migrate-mysql-database

issues w MySQL etc. probably some more leg work here. Note Still seeding doesn't call if you have a db but it's empty. Problem..

Should I learn VB.NET or C#? [closed]

http://stackoverflow.com/questions/1653895/should-i-learn-vb-net-or-c

finally decided to go with C# for myself. Thank you all. Still you are requested to put your opinion Once it is reopened of..

C# Sort and OrderBy comparison

http://stackoverflow.com/questions/1832684/c-sharp-sort-and-orderby-comparison

Why cannot C# generics derive from one of the generic type parameters like they can in C++ templates? [duplicate]

http://stackoverflow.com/questions/1842636/why-cannot-c-sharp-generics-derive-from-one-of-the-generic-type-parameters-like

while the latter are first class run time entities. Still I am failing to see the reason why CLR designers did not come..

Creating Wizards for Windows Forms in C# [closed]

http://stackoverflow.com/questions/2340566/creating-wizards-for-windows-forms-in-c-sharp

The only thing non trivial is to hide the tabs at runtime. Still easy to do by processing a Windows message. Add a new class..

Calling generic method with a type argument known only at execution time

http://stackoverflow.com/questions/325156/calling-generic-method-with-a-type-argument-known-only-at-execution-time

interface in interfaces Method interface.MakeGenericType Still get compile error here I get Cannot apply operator ' ' to operands..

SMS Gateway for Windows + C#

http://stackoverflow.com/questions/3524742/sms-gateway-for-windows-c-sharp

AT commands work making you a 1337 hax0r. Cons Complicated Still have to pay carriers per message Doesn't scale. I happen to..

Connecting over internet to WCF service using wsDualHttpBinding times out

http://stackoverflow.com/questions/4526284/connecting-over-internet-to-wcf-service-using-wsdualhttpbinding-times-out

internet to WCF service using wsDualHttpBinding times out Still on the WCF learning curve I've set up a self hosted WCF Service..

Hosting external app in WPF window

http://stackoverflow.com/questions/5028598/hosting-external-app-in-wpf-window

handle my windows and menus created by my process Still you can do quite a lot application by application using various..

Should i use ThreadPools or Task Parallel Library for IO-bound operations

http://stackoverflow.com/questions/5213695/should-i-use-threadpools-or-task-parallel-library-for-io-bound-operations

behaves the same and gives approximate results . Still TPL has advantages like easy exception handling cancellation..

Very slow compile times on Visual Studio 2005

http://stackoverflow.com/questions/55517/very-slow-compile-times-on-visual-studio-2005

VSS integration altogether and stick to using the VSS UI Still not rip snorting through a compile but every bit helps. Orion..

.NET Memory issues loading ~40 images, memory not reclaimed, potentially due to LOH fragmentation

http://stackoverflow.com/questions/6271891/net-memory-issues-loading-40-images-memory-not-reclaimed-potentially-due-to

a couple of buttons about half of the ~1.5GB is reclaimed. Still too much but interesting nonetheless. Some weird WPF binding..

The purpose of delegates [duplicate]

http://stackoverflow.com/questions/687626/the-purpose-of-delegates

delegate void EventHandler object sender EventArgs e Still it's kinda confusing. Can someone give a good usefull example..

How can I get WinForms to stop silently ignoring unhandled exceptions?

http://stackoverflow.com/questions/7572995/how-can-i-get-winforms-to-stop-silently-ignoring-unhandled-exceptions

UnhandledExceptionMode.ThrowException to it. Still my form loads without causing any errors to be thrown. Even..

using ITextSharp to extract and update links in an existing PDF

http://stackoverflow.com/questions/8140339/using-itextsharp-to-extract-and-update-links-in-an-existing-pdf

maps that I can't actually imagine anyone using. Whew. Still reading Below is a full working VS 2010 C# WinForms app based..

C# Google Calendar V3 2 Legged authentication fails

http://stackoverflow.com/questions/8899000/c-sharp-google-calendar-v3-2-legged-authentication-fails

company and insert events if the time slot is available. Still I'm facing an authentication problem. The API manual states..