Forum: C# Sep 11th, 2008 |
| Replies: 5 Views: 2,209 Are you sure 'this.comboBox2.Text ' returns the selected index, (and do you need value or text)?
And make sure that reader[0].ToString() returns the intended value? You may print or debug..
... |
Forum: C# Sep 10th, 2008 |
| Replies: 13 Views: 1,813 Ok.
I wonder whether using a keylogger for my thesis reduces its quality, eventhough it helps to solve problem defined in the thesis.
Also do you know about good practices of using keylogger? Can... |
Forum: C# Sep 10th, 2008 |
| Replies: 13 Views: 1,813 Narue, do you mean keylogger implementation can not be used for any kind of scientific purposes?
What is the rule for using keylogger? |
Forum: C# Sep 10th, 2008 |
| Replies: 13 Views: 1,813 Meanwhile,
When I searched through the internet with "c# keylogger" keyword, then it returns lots of results in official sites and forums.
I think its legal issues is related to your purposes.... |
Forum: C# Sep 10th, 2008 |
| Replies: 13 Views: 1,813 Actually, I like that idea, coding a new IM for the existing software tool, but I am not sure that my thesis-advisor will love it :(
And also, I am not sure I could write a new IM in a integration... |
Forum: C# Sep 10th, 2008 |
| Replies: 13 Views: 1,813 I'm trying to improve the intended tool with some complementary features. Currently and unfortunately, it does not support logging of chat sessions. And also its API does not provide such a... |
Forum: C# Sep 10th, 2008 |
| Replies: 13 Views: 1,813 I understand LizR. However, this is must for my master-thesis :(
I need to store all messages during the chat sessions among users. And my solution is to store keyboard entries when the chat... |
Forum: C# Sep 10th, 2008 |
| Replies: 13 Views: 1,813 Hi everybody,
I have been writing a windows console application in c#. I want it to read all keys pressed and write them all into a text file when a specific window is active in windows xp... |
Forum: C# Jul 31st, 2008 |
| Replies: 3 Views: 1,650 I found a founction called "GetForegroundWindow" which returns a handle to the foreground window (the window with which the user is currently working).
I'll work on that, I hope it works.. |
Forum: C# Jul 31st, 2008 |
| Replies: 3 Views: 1,650 Could you please provide a bit more information about API you talked about?
Thanks.. |
Forum: C# Jul 30th, 2008 |
| Replies: 3 Views: 1,650 Hi everybody,
I want to save the what each attendee has written in chat window during the meeting. So, I need to access the chat object and get the writings of each user.
To solve this problem,... |
Forum: Java Apr 8th, 2008 |
| Replies: 6 Views: 4,291 I have the CD, there are some documentation on it. But I have no time to read the 1000 pages document. Please help.. |
Forum: Java Apr 8th, 2008 |
| Replies: 6 Views: 4,291 I could not find related documentation.. An recomendation for internet resources ?? |
Forum: Java Apr 8th, 2008 |
| Replies: 6 Views: 4,291 Hi,
I am developing web page by JSP. I have JAVA classes and I need to implement functions to connect DB2 in JAVA classes. But, I could not connect to DB2.. When I searched I could not find any... |
Forum: JSP Mar 24th, 2008 |
| Replies: 3 Views: 1,611 I have installed eclipse and I need to learn JSP as quickly as possible.. I think firstly I need to install JSP plugin for eclipse but I could not find it. Do you have any suggestion for plugins? The... |
Forum: Java Jan 16th, 2008 |
| Replies: 10 Views: 3,135 I did what you exactly said but JList still display nothing when I add new element to myDynamicArray:
myImage newImage = new myImage(file);
myArray.addElement(newImage);
Is it... |
Forum: Java Jan 16th, 2008 |
| Replies: 10 Views: 3,135 I have no much experience in Java, and especially in ListModels. So, I have many questions in my mind,
and if you would be more informative and clear in your answers, I will get the point more... |
Forum: Java Jan 16th, 2008 |
| Replies: 10 Views: 3,135 I added this lines to the add method:
fireIntervalAdded( this, 0, ind );
this.fireContentsChanged(this, 0, ind);
but JList still display nothing...
is there anything wrong... |
Forum: Java Jan 16th, 2008 |
| Replies: 10 Views: 3,135 Could you give a bit more detail? What is the dataModel here? I have to construct the JList with dynamicArray object.
Do you mean this:
myDynamicArray myArray = new myDynamicArray();
... |
Forum: Java Jan 16th, 2008 |
| Replies: 10 Views: 3,135 Here is the some part of the code:
myDynamicArray myArray = new myDynamicArray();
AbstractListModel model = myArray ;
JList lstImage = new JList(model);
when clicked on the button... |
Forum: Java Jan 16th, 2008 |
| Replies: 10 Views: 3,135 Hi everybody,
I have a class called "dynamicArray" which makes use of static array and provides addElement, deleteElement methods, etc. It stores the datatype, "myObject". I want to construct the... |
Forum: C Dec 30th, 2007 |
| Replies: 5 Views: 1,026 typedef Flight ItemType;
typedef int PosType;
typedef struct{
ItemType Data[MAXSIZE];
PosType Rear,Front;
}QType;
ItemType RemoveQ(ItemType *Item)
{ |
Forum: C Dec 30th, 2007 |
| Replies: 5 Views: 1,026 I have such an loop:
int i = 1230;
while(i<1300){
int k = 0;
Flight removedItem = RemoveQ(&Item);
if(removedItem.C_TIME <= 1230){
k = k + 1;
... |
Forum: C Dec 30th, 2007 |
| Replies: 3 Views: 4,613 |
Forum: C Dec 30th, 2007 |
| Replies: 3 Views: 4,613 I am writing a Queue class implementation, and my Queue holds a object called Flight. I tried to create this object by struct. Some part of my code is here:
#include <stdio.h>
#include <stdlib.h>... |
Forum: Java Dec 21st, 2007 |
| Replies: 1 Views: 799 Hi everybody,
I am new at GUI and I need your help..
I have a JPanel, named "holdAll", layout of which is set to BorderLayout. I have implemented all other JPanels in different class files. For... |
Forum: C Nov 30th, 2007 |
| Replies: 1 Views: 620 I read two binary numbers which are separeted by a coma(1010,1000111) from a texfile into two differen linkedlist as below:
while (!feof(fout))
{
ch=fgetc(fout); ... |
Forum: ASP.NET Sep 7th, 2007 |
| Replies: 1 Views: 1,841 Should I store images as binary or should I store their paths into database? Do you think which one is more advantageous?
I am waiting for your suggestions..
Have a good programming :)) |
Forum: C Jan 7th, 2007 |
| Replies: 3 Views: 4,854 Thanks Ravalon I prefer the dynamic one :) |
Forum: C Jan 7th, 2007 |
| Replies: 3 Views: 4,854 when I initialize the array in this way:
const int size = 10;
int myArray[size];
it works well. But I have to initialize it in this way:
const int size =pow(2, Depth()+1)-1;
int... |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 I make it :) Thanks a lot :) |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 hi iamthwee at this point I could not achieve tree traversal I think there is something necessary related with recursion. How did you travers the tree? Could you please explain?
My code is below:... |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 Should I continue to use Queue method or should I completely change it with array method?
While using Queue I stored the pointers to values stored in the tree into the queue and called these... |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 thanks a lot for everything iamthwee, but I am almost out of mind. I could not make it. I think I should give up :( |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 hi iamthwee, my function to print is below:
void BST::BreadthFirstTraversal(){
Queue myQ;
BSTNode *p;
int myDepth = 0;
cout<<endl;
if(root!=NULL){
myQ.Qinsert(root);
... |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 Yes I understood in this time thanks but I actually want to know how to print all null nodes as "-" under the right subtree of root A. But in your example just there are 4 subtree showed. Actually I... |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 Yes iamthwee it would be super:confused: !!! Could you please explain your method on my example:
My tree is below:
2700
And the output have to be like this:
23
1,45
-,2 | 31,52
-,- | -,3... |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 But B will occupy the array of index 2i+1 where http://www.daniweb.com/cgi-bin/mimetex.cgi?i will obviously be 1 so index B will be 3 Because that's the position where A was in our array. But in... |
Forum: C++ Jan 7th, 2007 |
| Replies: 26 Views: 3,417 thanks iamthwee,
but i can not produce the output:
23
1,45
-,2 | 31,52
-,- | -,3 | -,- | -,234
-,- | -,- | -,- | -,5 | -,- | -,- | -,- | -,-
by using the array you have just explained, or... |