all groups > c# > april 2006 > threads for saturday april 29
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
How do you get the name of the Registered Company on a computer?
Posted by Patrick Blackman at 4/29/2006 9:49:36 PM
How do you get the name of the Registered Company on a computer?
Any ideas would be appreciated.... more >>
Fastest Way for Threads to Display on Picture Boxes?
Posted by eric_berlin NO[at]SPAM msn.com at 4/29/2006 4:07:12 PM
I am writing a multithreaded application that has 6 threads each
writing 5 frames per second video bitmaps to a different picture box.
I have just found out that only the main UI thread is supposed to
interact with Windows Fourms. What is the fastest way to have a non UI
thread safely write a bi... more >>
Where to store and document methods
Posted by Ranginald at 4/29/2006 1:35:22 PM
Hi,
I am generally new to OOP and in learning and writing code I have
developed many of my own reusable methods.
A. What is the best way to store these methods for easy reuse later?
I was thinking:
1. Word document (e.g. create a "code reference book")
2. create .DLLs to store related m... more >>
Possible To Set Topmost Property In A Web Browser?
Posted by Gary Brown at 4/29/2006 11:57:47 AM
Hi,
I need a web browser capable of handling video streams and that will
stay in front of the Z order. There are a number of video streaming
sources I watch that launch a browser window containing the video
from another browser page. I am almost always working on something
else while follow... more >>
How to allow users to hyperlink to items in a DataGrid
Posted by diatom NO[at]SPAM newsgroup.nospam at 4/29/2006 11:41:02 AM
Hello,
I have the items of a table bound to a DataGrid control on my web form. How
would I go about letting the user click on an item in the DataGrid control to
download the content.
For example, lets say the contents of my DataGrid control are a list of
articles. I want the user to be... more >>
Matching a string to a filename mask?
Posted by Brian Parker at 4/29/2006 11:06:19 AM
I have an ArrayList ( strings ) of filenames like such:
fred.out
inctructions.txt
luncheon01.jpg
luncheon02.jpg
luncheon05.jpg
luncheon11.jpg
HeebieJeebie.cs
...etc..
The user will provide a filename mask such as:
*.*
*.jpg
luncheon0?.*
...etc..
Is there a simple way to do a comp... more >>
COM StdPicture-to-Image conversion
Posted by Mark at 4/29/2006 9:28:25 AM
We're authoring a VS 2005 app that includes several EXE's and DLL's and also
uses a COM component (a customer requirement). The COM component provides a
graphic image to be used by the .NET app; the graphic is supplied as a
"StdPicture" (AKA, IPictureDisp).
How can I convert this to a .NET Ima... more >>
Downloading files
Posted by ssduli NO[at]SPAM gmail.com at 4/29/2006 8:06:28 AM
I am writing a web crawler to download all html and jpg files to a
directory locally. Since dns lookups present a possible bottleneck, i
have decide to incorporate a dns cache in the form of a hashtable. The
urls are resolved before they are passed onto the crawler for crawling.
My problem i... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Can't run a C# Program Without VS2005
Posted by chris_doran NO[at]SPAM postmaster.co.uk at 4/29/2006 8:04:36 AM
Firstly, let me come clean and say I don't really know what I'm doing.
Classic tale: I'm using some code developed by a third party who is now
uncontactable. Further, he did it in C# and .NET which are a total
mystery to me. My bit of the project is done in C and links to his bit
which is a DL... more >>
Transfer string data to unmanaged buffer
Posted by Burkhard at 4/29/2006 4:31:01 AM
I declared a struct with fixed size buffers to send it to an unmanaged function
[StructLayout (LayoutKind.Sequential)]
unsafe struct RCSTKAS
{
public fixed Byte xValue1 [12];
public fixed Byte xValue2 [30];
...
}
Before calling the exter... more >>
how to casting a object inherit form Form to another object in c# 2.0
Posted by harvie wang at 4/29/2006 2:52:14 AM
Hi,
I want to implement a common Form with special interface, such as MovePoint(double,double).
I create a interface first:
namespace ABC.Test
{
public Interface IMyWindowInterface
{
void MovePoint(double,double);
}
}
then creat... more >>
String.Split
Posted by Wallace at 4/29/2006 2:41:09 AM
Hai All,
I am having a doubt in string.split, here the code sample
string str = "school college job";
note that there is '\t' spacing between each term in the string str.
how can I split this using split method??
Urgent... Please help...
Looking forward ... more >>
|