¡@

Home 

c# Programming Glossary: machine

How to get my own IP address in C#?

http://stackoverflow.com/questions/1069103/how-to-get-my-own-ip-address-in-c

Nope that is pretty much the best way to do it. As a machine could have several IP addresses you need to iterate the collection..

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

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

Interop will work but it requires Excel to be on the machine you are using. Also the OLEDB method is intriguing but may not..

.NET Process Monitor

http://stackoverflow.com/questions/1986249/net-process-monitor

Is there a way to determine when the last time a specific machine last ran a process I can use the following to determine if a..

What is a good pattern for using a Global Mutex in C#?

http://stackoverflow.com/questions/229565/what-is-a-good-pattern-for-using-a-global-mutex-in-c

mutexes One that will work Regardless of the locale my machine is in Is guaranteed to release the mutex properly Optionally.. for global mutex Global prefix means it is global to the machine string mutexId string.Format Global 0 appGuid using var mutex..

How to force my .NET App to run as administrator on Windows 7?

http://stackoverflow.com/questions/2818179/how-to-force-my-net-app-to-run-as-administrator-on-windows-7

on Windows 7 Once my program is installed on a client machine how to force my program to run as administrator on Windows 7..

Validate a username and password against Active Directory?

http://stackoverflow.com/questions/290548/validate-a-username-and-password-against-active-directory

create a principal context e.g. your domain could be machine too using PrincipalContext pc new PrincipalContext ContextType.Domain..

Protect .NET code from reverse engineering?

http://stackoverflow.com/questions/506282/protect-net-code-from-reverse-engineering

more difficult but ultimately any executable on the local machine is crackable. Eventually that code has to be converted into.. Eventually that code has to be converted into native machine code and every application that is runnable is vulnerable. What..

Proper use of the IDisposable interface

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

now since they're no longer needed. When we don't the machine grinds to a swapping halt. Bonus Reading For anyone who likes..

C# DLL config file

http://stackoverflow.com/questions/594298/c-sharp-dll-config-file

multiple copies of an application installed on the same machine for the same user. But you may very well have 100 different.. you'll have multiple apps making use of it within any one machine user. But if not there is something you should keep in mind...

Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentials

http://stackoverflow.com/questions/659013/accessing-a-shared-file-unc-from-a-remote-non-trusted-domain-with-credentials

UNC. Naturally we need to supply credentials to the remote machine. Typically one solves this problem in one of two ways Map the.. runs is duplicated including password on the remote machine as a local user. Basically leverage the fact that Windows will.. map a drive . This will allow you to connect to a remote machine even if it is not on the same domain and even if it has a different..

How to get a user's client IP address in ASP.NET?

http://stackoverflow.com/questions/735350/how-to-get-a-users-client-ip-address-in-asp-net

usually the user's ISP's IP address not exactly the user's machine IP address who for example clicked a link. How can I get the.. Last account activity 4 hours ago from 86.123.127.8 but my machine IP address is a bit different. How does Stack Overflow get this.. won't know who or where that user is. When you say your machine address is different to the IP address shown on StackOverflow..

What is the best choice for .net inter-process communication?

http://stackoverflow.com/questions/84855/what-is-the-best-choice-for-net-inter-process-communication

.NET Remoting to communicate with a running process on my machine c# .net ipc processes share improve this question WCF is..

The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine in 64 Bit Machine

http://stackoverflow.com/questions/11078675/the-microsoft-ace-oledb-12-0-provider-is-not-registered-on-the-local-machine-i

provider is not registered on the local machine in 64 Bit Machine I am working in Windows Application. I am reading a value from.. IMEX 1 Its working fine in my local and i am having 32 Bit Machine. I ran the exe in Server which is 64 Bit Machine. There i am.. 32 Bit Machine. I ran the exe in Server which is 64 Bit Machine. There i am getting the error like The 'Microsoft.ACE.OLEDB.12.0'..

Get list of certificates from the certificate store in C#

http://stackoverflow.com/questions/1205295/get-list-of-certificates-from-the-certificate-store-in-c-sharp

certifacte store or a part of it e.g. storeLocation Local Machine and storeName My and get a list collections of all certificates..

.NET Configuration (app.config/web.config/settings.settings)

http://stackoverflow.com/questions/132544/net-configuration-app-config-web-config-settings-settings

true Smtp settings Health monitoring Hosting environment Machine key When each environment developer integration test stage live..

Sockets On Same Machine For Windows and Linux

http://stackoverflow.com/questions/1644851/sockets-on-same-machine-for-windows-and-linux

On Same Machine For Windows and Linux How efficient is it to use sockets when..

Workflow Design Dilemma - State Machine, yes or no

http://stackoverflow.com/questions/1966950/workflow-design-dilemma-state-machine-yes-or-no

Design Dilemma State Machine yes or no I'm a beginner with WF but I've read a book and done..

How can I determine for which platform an executable is compiled?

http://stackoverflow.com/questions/197951/how-can-i-determine-for-which-platform-an-executable-is-compiled

share improve this question from another Q since removed Machine type This is a quick little bit of code I based on some that.. me the offset as another response noted. public enum MachineType Native 0 I386 0x014c Itanium 0x0200 x64 0x8664 public static.. 0 I386 0x014c Itanium 0x0200 x64 0x8664 public static MachineType GetMachineType string fileName const int PE_POINTER_OFFSET..

get unique machine id

http://stackoverflow.com/questions/2004666/get-unique-machine-id

unique machine id I want to get unique unchangeable Machine id Like Processor serial number of the computer for distribute..

What is the fastest way to compute sin and cos together?

http://stackoverflow.com/questions/2683588/what-is-the-fastest-way-to-compute-sin-and-cos-together

Activation error occured while trying to get instance of type LogWriter

http://stackoverflow.com/questions/2900403/activation-error-occured-while-trying-to-get-instance-of-type-logwriter

#xA Severity severity newline #xA Title title newline #xA Machine localMachine newline #xA App Domain localAppDomain newline #xA.. severity newline #xA Title title newline #xA Machine localMachine newline #xA App Domain localAppDomain newline #xA ProcessId..

How to determine total size of ASP.Net cache?

http://stackoverflow.com/questions/344210/how-to-determine-total-size-of-asp-net-cache

category I have the following cache related counters Cache Machine Memory Limit Used Cache Process Memory Limit Used There are..

Using Process.Start() to start a process as a different user from within a Windows Service

http://stackoverflow.com/questions/362419/using-process-start-to-start-a-process-as-a-different-user-from-within-a-windo

I seem to have a working implementation Works On My Machine TM for the following scenarios Batch File .NET Console Assembly..

Safest way to get processor ID or some hardware info

http://stackoverflow.com/questions/4582680/safest-way-to-get-processor-id-or-some-hardware-info

return But when I run this on Windows XP from a Virtual Machine my currentResult ProcessorID is null . I'm not sure if it is..

Get All IP Addresses on Machine

http://stackoverflow.com/questions/5271724/get-all-ip-addresses-on-machine

All IP Addresses on Machine How can I get all of the IP addresses attached to the machine..

Is C# really slower than say C++?

http://stackoverflow.com/questions/5326269/is-c-sharp-really-slower-than-say-c

about how those languages work in real life. Virtual Machine Like almost any reasonably modern VM Microsoft's for .NET can..

Uses for MachineKey in ASP.NET

http://stackoverflow.com/questions/550210/uses-for-machinekey-in-asp-net

for MachineKey in ASP.NET What different ways are Machine Keys useful in.. for MachineKey in ASP.NET What different ways are Machine Keys useful in asp.net I think the following are correct but.. viewstate machinekey share improve this question MachineKey is used for ViewState encryption and validation Forms Authentication..

How to pass table value parameters to stored procedure from .net code

http://stackoverflow.com/questions/5595353/how-to-pass-table-value-parameters-to-stored-procedure-from-net-code

Is String.Format as efficient as StringBuilder

http://stackoverflow.com/questions/6785/is-string-format-as-efficient-as-stringbuilder

since died. However there's still a copy on the Way Back Machine http web.archive.org web 20090417100252 http jdixon.dotnetdevelopersjournal.com..

.NET application cannot start and receive XamlParseException

http://stackoverflow.com/questions/7802176/net-application-cannot-start-and-receive-xamlparseexception

causing my app to not start on XP Window Machine. What is going on c# wpf deployment share improve this question..

Why does WPF databinding swallow exceptions?

http://stackoverflow.com/questions/978887/why-does-wpf-databinding-swallow-exceptions

this blog has departed but we do have the WayBack Machine http web.archive.org web 20091103200557 http www.beacosta.com..