|
Thanks for your reply.. BDF
I think that this whiteline might be a bug of MonthCalender control in .NET 2.0..
I will take a look the link you gave me..
Thanks again.
-- modified at 22:09 Wednesday 5th September, 2007
Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)
If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you.
|
|
|
|
|
i want to disable hotkeys like ctrl ,alt, delete while my application is running and enable when application is closed. i want code in c#. Any one can guide me.
tahir
|
|
|
|
|
Do you want to disable them only for your application or for whole system? If you want to do it for the whole system, then I guess you will need to install global mouse keyboard hook. There are several good articles on codeproject that describe how to do that.
-- modified at 6:15 Wednesday 5th September, 2007
|
|
|
|
|
Giorgi Dalakishvili wrote: I guess you will need to install global mouse hook.
Why would you suggest a mouse hook? The OP wants to deal with key strokes.
Nobody can give you wiser advice than yourself. - Cicero
.·´¯`·->ßRÅhmmÃ<-·´¯`·.
|
|
|
|
|
Stupid mistake. It must be keyboard hook. Thanks for pointing it out.
|
|
|
|
|
You will need to install a keyboard hook for this. Start with that and ask further questions while you run into trouble.
Nobody can give you wiser advice than yourself. - Cicero
.·´¯`·->ßRÅhmmÃ<-·´¯`·.
|
|
|
|
|
You can't disable Ctrl-Alt-Delete. That key combination is handled at the kernel level, before your app, or any keyboard hooks, get a chance to see it and quash it.
|
|
|
|
|
Hello....
I am having following problem...
I want to know in run time which method of which class is running
ie.
class MyClass
{
public string GetName()
{
string className = ?;
string methodName = ?;
return className + methodName;
}
}
.......
Help quick.....
|
|
|
|
|
For a single threaded application:
class MyClass
{
public string GetName()
{
string className = "MyClass";
string methodName = "GetName";
return className + methodName;
}
}
:P
As a note "Help Me" isn't a good post subject ... everyone is asking for help and it wouldn't be very useful to have all subjects as "Help" would it. A much better idea would be to give a descriptive title, like "Determine currently running class and method".
|
|
|
|
|
Use this..
string cn = System.Reflection.MethodBase.GetCurrentMethod().ReflectedType.Name;
string mn = System.Reflection.MethodBase.GetCurrentMethod().Name;
*jaans
|
|
|
|
|
i have written a program that keeps track of records in a data file and came across a small problem. writing to files for most part works fine except when i go to update entries, if the new entry is bigger than the old one it starts overwriting data ahead of the entry. if someone could give me soem advice on how i can prevent this i would very much appreciate it.
|
|
|
|
|
Text file, correct?? The only way do this is to load the entire file into memory (an array of strings works), make the changes to the in-memory copy, then write then entire file back out, overwriting what's on disk. You can even write it back out to a temporary file, then delete the original file, and rename the temp file to the original filename.
|
|
|
|
|
thats sort of what i was trying to avoid was a lot of extra work, way i once did it in c++ was i capped all my line sizes so i knew the max size i could work with but did not want this limitation in my new c# stuff, i appreciate the response and i have already thought about doing something very much like you mentioned.
|
|
|
|
|
swatgodjr wrote: way i once did it in c++ was i capped all my line sizes so i knew the max size i could work
This only works if every line is exactly the same length in the file. Then it's easy to calculate the offset and you know how much space you have left. But, if you use the default methods of writing files, then each line is not going to be the same length.
|
|
|
|
|
hi
how to save the value of a cell in row of a gridview when a click event occurs on that row.
|
|
|
|
|
may be following link help u out
http://www.codeproject.com/useritems/Drag_Drop_from_GridView.asp
P.S. try to copy paste the link
|
|
|
|
|
I have a problem creating Thread on accessing MSSQL database.
Can anyone show me how to do a series of threads in synchrony to access to the MSSQL database?
Thank you. I will very much appreciate your help.
janverge@gmail.com
|
|
|
|
|
Jan Palmer wrote: Can anyone show me how to do a series of threads in synchrony to access to the MSSQL database?
Since this would just execute each SQL command in order, why are you even using multiple threads??
|
|
|
|
|
Hi all,
Is there a way to add details to a database from a form?
I'm not really sure about the commands.
help please!
Thanks.
|
|
|
|
|
It sounds like you don't know much about databases ? What do you want to add ? tables ? columns ? rows ? A row would be an entry, as in, basic data. The web abounds with examples on how to do that, examples which you'd find much easier to follow than a few sentences offered in a forum reply.
Christian Graus - Microsoft MVP - C++
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
I think u want to save records on a form to a database...
if this is the case then u should have a database containing atleast one table that has the same matching columns as the fields on your form...
and then write a code to save those fields values to your database table
|
|
|
|
|
Dear all,
I had used partial class to extend typed dataset(ex. add a method to TypedDataTable) in my windows-base applications and it works well.
But when I try it in a web services project, those extend functions which is visible within web project, but invisible to client.(I create a windows-base application then add web references point to that web project, client application will not be able to use extend function, properties etc.)
Is it true that Extending a Typed DataSet Using Partial Classes is not available in Web Services Project ?
Or is there anyway to enable it ?
Thanks for help.
|
|
|
|
|
Hi... is there any coding where I can tell a path is a folder or a file?
private void FileOrFolder(string path){
if(){//// condition is path is a folder
}
else if(){/// condition is path is a file
}
else{/// unknown condition.
}
}
|
|
|
|
|
I believe that File.Exists is one way to find out if something is a file.
Christian Graus - Microsoft MVP - C++
"I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
|
|
|
|
|
There is also Directory.Exist in System.IO it is part of File
|
|
|
|