Search Results

0
votes

tStringList passing in C# to Delphi DLL

In theory, you could do something like this by using pointers (casting them as the C# IntPtr type) instead of strongly typed object references (or perhaps wrapping them in some other type …
1
vote

How do you determine if an Internet connection is available for your WinForms App?

Ping google.com (or a list of well-known hosts) or try actually performing one of the functions (in a structural sense) for which your application requires Internet connectivity. There is no way, o …
3
votes

Can’t resolve DNS

Have you tried confirming the same DNS query works via nslookup from the same system on which your application runs? I.e., C:\>nslookup Default Server: whatever.dns.exam …
2
votes

Does anyone know how a System.Windows.Forms.Timer affects the host application and the system in general?

Define "high tick rate timer" :). The problem with timer components relying on WM_TIMER (such as the Windows.Forms one) is manifold: You will not be able to get a res …
1
vote

Microsoft Office Document’s Viewer Component

I would avoid considering the use of the Office viewers as COM object providers (even if they do register the Office COM components.) As far as I can interpret the license (I'm not a lawyer but hav …
1
vote

closing a window

No matter which toolkit you're using there are always events for clicks on the close button, keyboard events for Alt+F4, menu click events for menus etc. All you have to do is enumerate the possibl …
6
votes

Notification when a file changes?

That would be System.IO.FileSystemWatcher. …
5
votes

yield statement implementation

Here's a start, from Raymond Chen's blog: The implementation of iterators in C# and its cons …
0
votes

What can be done in VC++ (native) that can’t be done with VC#?

For example, it makes sense to use C++ if it's harder to translate the header files for existing libraries than it is to give up the existing managed libraries. …