tagged [runtime]
Where to download Microsoft Visual c++ 2003 redistributable
Where to download Microsoft Visual c++ 2003 redistributable I have an old dll that uses the Microsoft Visual C++ 2003 (7.1) run time package. Unfortunately I don't have that DLL around anymore. Short ...
- Modified
- 20 Oct at 17:34
How to check if file exists in a Windows Store App?
How to check if file exists in a Windows Store App? Is there any other way of checking whether a file exists in a Windows Store app?
- Modified
- 14 Jan at 08:22
Specifying generic collection type param at runtime
Specifying generic collection type param at runtime I have: I want to do: How can I do this? I want to return a generic collection from the database of a type that I discover at runtime using reflecti...
How to remove an element from an IGrouping
How to remove an element from an IGrouping How do I remove an object directly from an IGrouping `IGrouping`? The only way I know of currently is to generate a new IGrouping without the concering eleme...
- Modified
- 28 Aug at 16:44
How to generate an instance of an unknown type at runtime?
How to generate an instance of an unknown type at runtime? i've got the following in C#: theses two strings should be taken to generate an object of the specified type with the specified value... resu...
How to create informative toast notification in UWP App
How to create informative toast notification in UWP App In my app, I want to inform user when particular action had performed, like record updated successfully or new record added, but there's not inb...
- Modified
- 31 May at 09:30
Poll C# app's memory usage at runtime?
Poll C# app's memory usage at runtime? I have an app that, while running, needs to poll its own memory usage. It would be ideal if it could list out the memory usage for each object instantiated. I kn...
- Modified
- 21 Jan at 01:10
Allowing Untrusted SSL Certificates with HttpClient
Allowing Untrusted SSL Certificates with HttpClient I'm struggling to get my Windows 8 application to communicate with my test web API over SSL. It seems that HttpClient/HttpClientHandler does not pro...
- Modified
- 23 Sep at 15:45
how to see the values of static variables at runtime in visual studio
how to see the values of static variables at runtime in visual studio The question pretty much explains what I want to do. I have several projects in c# which constitute the solution and I want to vie...
- Modified
- 14 Feb at 06:52
Changing dataset connection string at runtime
Changing dataset connection string at runtime I have a c# generated dataset. How can I change the connection string so I can use the dataset with another (identically structured yet differently popula...
- Modified
- 13 Aug at 14:1
execute c# code at runtime from code file
execute c# code at runtime from code file I have a application that contains a button. The code of the button click is written in separate text file which will be placed in the applications runtime di...
- Modified
- 10 Apr at 18:33
Detect if Modifier Key is Pressed in KeyRoutedEventArgs Event
Detect if Modifier Key is Pressed in KeyRoutedEventArgs Event I have the following code: ``` public void tbSpeed_KeyDown(object sender, KeyRoutedEventArgs e) { e.Handled = !((e.Key >= 48 && e.Key = ...
- Modified
- 17 Oct at 06:40
How to close a Windows Phone 8.1 app
How to close a Windows Phone 8.1 app In WP7 and WP8 I just needed to clear the backstack in a page, then press Back button and the app is closed. In WP8.1 I do Frame.BackStack.Clear(), press Back and ...
- Modified
- 29 Apr at 00:15
D runtime as DLL
D runtime as DLL Does anyone know if at least D runtime and Phobos for D 2 will be pre-built as DLLs or at least ready to be compiled in such a way? Currently, as I understand, it will require to mark...
Update label location in C#?
Update label location in C#? I have a method that returns a value, and I want this value to be the new location of a label in a windows form application. but I'm being told that a label's location is ...
It says that TypeError: document.getElementById(...) is null
It says that TypeError: document.getElementById(...) is null Althought I pushed a parameter to getElementById I wonder from where is this 'is null' error coming from? In addition to this i wonder why ...
- Modified
- 29 Apr at 12:51
How to await a method in a Linq query
How to await a method in a Linq query Trying to use the `await` keyword in a `LINQ` query and I get this: Sample Code: Is it not possible to await something in a `LINQ` query, or does it need to be st...
- Modified
- 6 May at 12:31
C# Create Snap To Grid Functionality
C# Create Snap To Grid Functionality I am trying to create some snap to grid functionality to be used at run time but I am having problems with the snapping part. I have successfully drawn a dotted gr...
How to convert SVG file to XAML in windows 8 / WinRT
How to convert SVG file to XAML in windows 8 / WinRT How i can convert SVG file to XAML in windows 8 / WinRT. I am new to this XAML / SVG environment. So anyone please help me to implement the same in...
- Modified
- 12 Aug at 22:49
Change the location of an object programmatically
Change the location of an object programmatically I've tried the following code: to change the location of a panel that I made in design mode while the program is running but it returns an error: > Ca...
StackOverflowException in .NET 4
StackOverflowException in .NET 4 The following code works fine until I upgrade to .NET 4 (x64) ``` namespace CrashME { class Program { private static volatile bool testCrash = false; priva...
- Modified
- 25 Aug at 00:24
How do I send an email from a WinRT/Windows Store application?
How do I send an email from a WinRT/Windows Store application? I am developing a Windows Store Application (Windows 8). I have a need to send emails based on data and address stored in the application...
- Modified
- 4 Oct at 17:25
Read text file in project folder in Windows Phone 8.1 Runtime
Read text file in project folder in Windows Phone 8.1 Runtime I want read one file .txt in root folder of my project into my database at first time application launch, but I don't know how to do that....
- Modified
- 30 May at 09:41
Get Screen Resolution in Win10 UWP App
Get Screen Resolution in Win10 UWP App As an UWP App runs in window mode on common desktop systems the "old" way of getting the screen resolution won't work anymore. Old Resolution with `Window.Curren...
- Modified
- 23 May at 12:2
Get OS-Version in WinRT Metro App C#
Get OS-Version in WinRT Metro App C# I'm programming a Metro Style App with C# and the Visual Studio 11 Beta. Now I want to get the OS-Version of the OS. How can I get this? I found out how to do it i...
- Modified
- 12 Apr at 14:12