0
votes
C# have end of text priorities
AFAIK there's no way to scroll a label. A hack would be to use a TextBox (read-only, turn off border) then use SendKeys.Send() to move the cursor to the end of the text. Something like:
…
0
votes
The whole If prevValue != currValue thing in a loop
Looks good to me as long as String.Empty is never an element of your list and your list is sorted. May want to make sure theList isn't mutated by some other thread. Looks like a pretty stock way …
1
vote
C# DllImport return type is TCHAR?
After doing a little digging, it turns out that the directx error routines are not shipped as dlls, they're shipped as libs that you statically link into your executable. I should have figured thi …
1
vote
Table showing generic equivalents of C# 1 data types
Take a look at "When to Use Generic Collections"
…
0
votes
Can I insert nodes into a TreeView during AfterLabelEdit without beginning to edit them?
If you're using databinding, shouldn't the update to the data source (SomeBoundValue) trigger a refresh of the nodes? Maybe you can force the currency manager to repopulate the tree view.... If y …
0
votes
How can I read data from a network stream synchronously in csharp
using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
public class SynchronousSocketClient {
public static void StartClient( …
0
votes
Thread safety and local variables
i is a local variable so it's not shared state.
If your getFromDb() is reading from, say, an oracle sequence or a sql server autoincrement field then the db is taking care of synchronizat …
4
votes
Does C# clean up C++ allocated memory?
I believe you should use CoTaskMemAlloc() for memory that you want to explicitly free from the managed side. The CLR will take care of freeing the memory once it's no longer reachable. If you wan …
0
votes
Using WebClient in C# is there a way to get the URL of a site after being redirected?
HttpWebRequest.AllowAutoRedirect can be set to false. Then you'd have to manually http status codes in the 300 range.
// Create a new HttpWebRequest Object to the mentioned URL.
Ht …
0
votes
Custom build step for C# project
No custom build step for individual files with C# projects. You could probably hack something together with MSBuild...
…
0
votes
Advantages and usefulness of adding an XML file to a Visual Studio 2008 project
If your app needs to load the XML it can be copied to the output directory. Also simplifies use of Setup/Deployment projects...
…
-1
votes
File and Directory Security with IPrincipal
You can use DllImport and the LogonUser win32 API to impersonate another user.
…
1
vote
Question on exporting to Excel from winforms using C#
If you want to create .xls files you'll need to either use the interop assembly or find another library that can create xls files (I don't know of any offhand). There's no way around the licensing …
3
votes
Notification when a file changes?
Use the FileSystemWatcher. You can filter for modification events only.
…
0
votes
How do I work with dial-up (RAS) connections in Windows using C#/.NET?
One way to do this is through Interop around RAS. RasDialDlg() can be used to open a dial-up networking connection without displaying the dialog box. Use RasHangUp() to disconnect.
RasEnu …
