all groups > dotnet windows forms > july 2004 > threads for friday july 2
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 31
Designer and UserControl.Text
Posted by Franz at 7/2/2004 10:41:30 PM
namespace ControlLib {
[Designer("System.Windows.Forms.Design.ParentControlDesigner,
System.Design", typeof(IDesigner))]
public class MyTabPage : System.Windows.Forms.UserControl {
private Button button;
[Browsable(true)]
public new string Text {
... more >>
Advice GUI and EXE
Posted by Janus Knudsen at 7/2/2004 8:28:33 PM
Hello
I need a good advice!
How do I separate my .exe from my gui?
I want something similar like for instance MSDE running as a service and
possible to administrer through a GUI.
Kind regards
Janus
... more >>
Application Timeout Required
Posted by Alok at 7/2/2004 4:30:37 PM
Hi,
My windows application needs a time out functionality.
After a specified time interval (say 20 mins) of inactivity, I need to show
the enter password screen.
I tried the Application_Idle event but that didn't work out well.
Could somebody give any suggestions ?
TIA :)
... more >>
StatusBarPanel exception
Posted by Slide-O-Mix at 7/2/2004 3:45:02 PM
I just started getting an exception in my application it says "Unable to set the panel text." (Although it occurs the first time on setting the alignment property on one of the panels)I have several panels and this only happens on some of them. Any ideas?
Thanks
Alex... more >>
Referencing an open form from VB.Net code
Posted by mbp in irvine at 7/2/2004 1:20:01 PM
Hi All,
I have 2 forms in a project. I enter some values in some text boxes on the first form then open the second form using the following VB code:
Dim frmForm2 As Form2
frmForm2 = New Form2
frmForm2.Show()
Within a sub on the second form I need to get some of the values... more >>
Multiline Datagrid Display
Posted by Thor Kornbrek at 7/2/2004 11:44:01 AM
I need my DataGrid control to display multiline text at all times.... not just when a Cell is being edited. Can anyone help? Maybe I am missing something, but many of the posts that I have read on the net about this mention the problem but no real resolution.
--
Thor Kornbrek
..Net Developer
... more >>
Listen for form events......
Posted by Alex Stevens at 7/2/2004 9:58:40 AM
Hi All,
I have a situation where I have two forms - FormA and FormB.
FormA has a list of Customers which when you double-click open the selected
customer.
FormB displays that Customer.
FormB has a public event called CustomerChanged(CustomerID as Int32) which
is raised with the current Cus... more >>
Static methods and local data (Again)
Posted by Simon Harvey at 7/2/2004 9:49:12 AM
Hi everyone,
I'm still abit confused about static methods accessing locally declared
variables.
For example
public static bool executeNonQuery(){
SqlCommand cmd;
SqlConnection con;
.....
}
Is the above threadsafe? Can the cmd or con object be accessed by more than
one thr... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
AxWebbrowser controls share HTTP session
Posted by bughunter NO[at]SPAM hotmail.com at 7/2/2004 8:28:56 AM
When using the AxWebbrowser control multiple times within an
application I have noticed that all of the controls share session
information. That is, if I retrieve a session cookie in one control
then it is available in all of the other controls.
Is there any way of ensuring that each AxWebbrow... more >>
Toolbar image transparency
Posted by Wayne at 7/2/2004 7:32:17 AM
I have a form with a tool bar and an image list. In the image list I've
added some 16x16 bmps, and have set the image list transparent color to the
background of these images. However the background still draws, is there
anyway to make the background of the images transparent?
... more >>
DataRow to DataGridRow.
Posted by neil.walters NO[at]SPAM racalinstruments.com at 7/2/2004 5:08:24 AM
Hi
Given a DataRow, is it possible to efficiently (wihtout trawling
through them all) get hold of the corresponding DataGridRow.
I have a value and want to programatically select the row in the
datagrid that contains the value. I can get hold of the DataRow by
DataRow dr = this.dataSet.Ta... more >>
Manifest Again!!!
Posted by Nuno Paiva at 7/2/2004 4:30:01 AM
I want a control that fake's Xp look in win2000...because the manifest doesnt work in win2000
Thanks...
... more >>
Manifest Question
Posted by Nuno at 7/2/2004 2:34:09 AM
The Manifest in WinXp works fine but in win2000 doesnt seem to work...
Is it posssible to give Xp look in Win2000?
Thank You!!!
ONE FINAL VICTORY PORTUGAL :)... more >>
how the richtextbox is written multithreadingly?
Posted by zbcong at 7/2/2004 1:56:02 AM
hello
i put a richtextbox and a button on the winForm.when the button is clicked,it generate several threads to write to the richtextbox,the code snippet as following:
private void btnSend_Click(object sender, System.EventArgs e)
{
for(int i=0;i<3;i++)
{
Thread thread =new Thread(ne... more >>
|