|
Thanks for the suggestion !!
Paul
|
|
|
|
|
SimonS suggestion would work, but might be too much work in the end, rather than using Inherited Forms I'd go with a UserControl that implements the base functionality you need for the client area and event handlers (with the event handlers being marked virtual ).
Then for each 'view' create a new UserControl which derives from the base control created above. And replace the previous one that was there (unhooking/hooking up the event handlers as you go).
James
- out of order -
|
|
|
|
|
Thanks, sounds like a possible solution!
Paul
|
|
|
|
|
i face some problem when 2 thread trying to access a file at the same
time.
for thread X, it trying to access the file with:
-------------------------------------
b.Save("ref.jpg);//b is Bitmap object
-------------------------------------
while at the same time, the thread Y will trying to access the file
with:
------------------------------------------------------------------------
FileStream fs = new FileStream("ref.jpg", FileMode.Open,
FileAccess.Read, FileShare.Read);
------------------------------------------------------------------------
thread Y sometimes will halt at FileStream fs... line without execute
the next statement. i strongly suspect that it is because that i
trying to access the same file at the same time.
any suggestion in solving this problem?
thank you.
regards
yccheok
|
|
|
|
|
Although previous attempts to use the lock statement failed for me, it might help in your case
Hope it helps
"I dont have a life, I have a program." Also, I won't support any software without the LeppieRules variable.
|
|
|
|
|
i olso decide to use lock statement at first. (i hvnt try it out yet). may i know why previous attempts to use the lock statement failed for u?
thank you.
|
|
|
|
|
I think that the FileShare.Read flag may be at fault. Try the FileShare.ReadWrite flag instead.
Michel
It is a lovely language, but it takes a very long time to say anything in it, because we do not say anything in it, unless it is worth taking a very long time to say, and to listen to.
- TreeBeard
|
|
|
|
|
Has anyone written one? The DataGrid is being a pain for me, I just want something that I can use as a grid without all the data stuff. Mainly its the problems with interoperation between a DataGrid , DataTable (and all it's DataRow s), and a DataGridTableStyle just to get a simple grid display and editing of my data.
The ListView with details view looked good for a bit there, but then it seems you can't edit anything except for the first column, which makes sense—but, of course, doesn't work for me.
Any ideas? I checked CP pretty thoroughly, but perhaps there are other sites with controls that I am not aware of?
Thanks in advance...
-Domenic Denicola- [CPUA 0x1337]
“I was born human. But this was an accident of fate—a condition merely of time and place. I believe it's something we have the power to change…”
|
|
|
|
|
The DataGrid supports binding to several different types of sources. Sources implementing IList or IBindableList are just two of the possibilities.
I've heard good things about Janus System's grid, but I didn't know about it until after I made my purchase (below). Janus is supplying prizes to October's competition so I would look into them just for that.
I needed more control in the grid so I tried - and later purchased - Xceed's .NET Grid (www.gridcomponent.com[^]). Source to the runtime grid is available for purchase. While I was beta-testing the grid in August I ran across a couple snags, but my e-mails were answered shortly afterwards (I sent the e-mails around 4am EST, I had replies waiting for me when I woke up at noon).
Of course neither help you if you are looking for a free custom-grid solution.
James
- out of order -
|
|
|
|
|
James T. Johnson wrote:
Of course neither help you if you are looking for a free custom-grid solution.
Yes, I did kind of forget to mention that part, as this is simply a personal project that I'm not making money off of. I didn't know these things were such a thriving business. Oh well, it's not a big priority—I will continue to mangle the DataGrid as best as I can.
Thanks for the prompt reply, by the way.
-Domenic Denicola- [CPUA 0x1337]
“I was born human. But this was an accident of fate—a condition merely of time and place. I believe it's something we have the power to change…”
|
|
|
|
|
Domenic [Geekn] wrote:
I will continue to mangle the DataGrid as best as I can.
Unless you are dependent on using DataSet's and DataTables you can create your own IList implementations and set the grid's DataSource property to that.
This help topic, ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vbconInterfacesRelatedToDataBinding.htm[^], discusses the basics of data binding (such as is used by the DataGrid).
James
- out of order -
|
|
|
|
|
Basically I have two different controls which both need to raise the same event code. This would be easy if the control types were the same or used the same EventHandler, but in this case one is a CheckBox and the other is the ImageButton .
ImageButton uses the ImageClickEventHandler , not the normal EventHandler .
Currently I have had to make the two events and then they both really just go and run the same method.
But is there a way (a way of using delegates I do not know about?) of having them both go to the same event handler off the bat?
ta
Paul Watson Bluegrass Cape Town, South Africa Colin Davies wrote:
...can you imagine a John Simmons stalker !
|
|
|
|
|
Unfortunately no, unless you redefine the event in an inherited class, but that will be too much work. Best is just to make a common method and call that, and thats what you probably have already
Now here's a tip (maybe it will work for you): Instead of using a ImageButton, just use an LinkButton and add HTML to the Text property for the pic iow <img src="nudiepic.jpg"> . Then use the Click event of that. Now both are using the same event handler and Paul can be happy again.
Hope it works (all theory)
PS: start shouting for zim!
"I dont have a life, I have a program." Also, I won't support any software without the LeppieRules variable.
|
|
|
|
|
leppie wrote:
Now here's a tip (maybe it will work for you): Instead of using a ImageButton, just use an LinkButton and add HTML to the Text property for the pic iow . Then use the Click event of that. Now both are using the same event handler and Paul can be happy again
Lovely, good idea, thanks leppie.
leppie wrote:
S: start shouting for zim!
LOL! I have faith in the bokke... I have faith in the bokke... I have faith in the bokke... I have faith in the bokke... *Paul carries on chanting*
Paul Watson Bluegrass Cape Town, South Africa Colin Davies wrote:
...can you imagine a John Simmons stalker !
|
|
|
|
|
Paul Watson wrote:
*Paul carries on chanting*
You sure you circled the fire the right way around? Didnt work!
"I dont have a life, I have a program." Also, I won't support any software without the LeppieRules variable.
|
|
|
|
|
Hello, the codegurus around the world.;)
How about using WIN32 API - SendMessage function.
As you know, we can import this API by Dllimport.
In fact, I have an idea to fire the event of some control by
firing by the other control.
(However, I didn't check all events yet?)
Or, we can use WinPros function to check all events?
Please, don't send me your email about your programming questions directly.
However, if you believe that you gives me some benefits, you can send me your email.
Have a nice day!
Sonork - 100.10571:vcdeveloper
-Masaaki Onishi-
|
|
|
|
|
I have a problem displaying an array of files in a listbox
my code for the array is:
string[] files = openFileDlg.FileNames;
and I looked up the bestway to add multiple files to a listbox and came up with this:
lstFiles.Items.AddRange(files);
the problem is that my last file when added this way is lost. I also tried setting the datasource to files:
lstFiles.DataSource = files;
but that did not work either. And forced redraw and reinitilization of the list box evertime my OpenFileDialog was called. My problem I think has to do with improper indexing of files... I say this because I cannot select one file and have it display (it comes up blank) but if I try to open it again it is there. So once my files array first becomes initilized it works.
I'm sorry if this question has been asked before but it's late and I have been searching the newsgroups and MSDN and just can't seem to find the answer... Thanks for your help
|
|
|
|
|
Freaky. Just as a matter of course...are you sure you clicked the OK button? It is, after all, late...right? (Not here. It's only 3:30 PM)
But that's wierd. 'Cause I've written the same code before and it's always worked for me.
[edit]Actually, I just did: fileList.Items.AddRange(fileDialog.FileNames); [/edit]
You will now find yourself in a wonderous, magical place, filled with talking gnomes, mythical squirrels, and, almost as an afterthought, your bookmarks
-Shog9 teaching Mel Feik how to bookmark
I don't know whether it's just the light but I swear the database server gives me dirty looks everytime I wander past.
-Chris Maunder
|
|
|
|
|
I figured it out... It was about 12:30 am when I posted my question and I will use the lateness of that as an excuse The answer? I have my listbox contained by a panel... The panel was expanded the entire top of the app (eg. under the title bar) so guess what when I set the docking on the listbox to fill... Yep it cut off the top line of my files... Do I ever feel dumb now
|
|
|
|
|
djkno3 wrote:
Do I ever feel dumb now
Don't. We all suffer from this type of stuff.
BTW, welcome to CP.
You will now find yourself in a wonderous, magical place, filled with talking gnomes, mythical squirrels, and, almost as an afterthought, your bookmarks
-Shog9 teaching Mel Feik how to bookmark
I don't know whether it's just the light but I swear the database server gives me dirty looks everytime I wander past.
-Chris Maunder
|
|
|
|
|
I want to ignore the mouse click event means whenever the event fired it just get ignored (nothing happen). For example I have a TextBox but when I click on it nothing happen, it just ignores the click event. I don't want to use the Enabled property cause it changes its apperance.
Thanks in advance.
|
|
|
|
|
Just don't write a method that fires when it's clicked...
You will now find yourself in a wonderous, magical place, filled with talking gnomes, mythical squirrels, and, almost as an afterthought, your bookmarks
-Shog9 teaching Mel Feik how to bookmark
I don't know whether it's just the light but I swear the database server gives me dirty looks everytime I wander past.
-Chris Maunder
|
|
|
|
|
Usually in a case like this I reate a new class derived fromm the control that I wasnt to modify, then basically override those event methods. Might be the long way to do it....
Mark
|
|
|
|
|
Hi!
I don't know if this really is a good idea. Because you user expects a visual feedback. If you disable the listbox, let it look disabled and don't fool your user.
But if you want to do it, do the following:
1)Derive a class from TextBox
2)Override WndProc. And call the base-class method on all messages except WM_CLICK. This should work.
Cheers
HTH
Martin
"Situation normal - all fu***d up"
Illuminatus!
|
|
|
|
|
I agree what u said and I tried the way you suggest it works great. But there is a problem it can be a expensive call, cause it goes in WndProc all the time cause events are firing all the time. Is there another way, like just detach that attached event. I will be really thankful to you.
|
|
|
|