|
Probably the easier way to do it with your existing code is to move the listening outside the "dinle" method:
public void dinle()
{
while (!AbortAll)
{
DoThread();
}
}
private void DoThread()
{
tcp_listener = new TcpListener(IPAddress.Any, 4444);
tcp_listener.Start();
...
}
catch
{
...
return;
}
}
}
}
All those who believe in psycho kinesis, raise my hand.
|
|
|
|
|
What is "AbortAll"? Is this a variable or?
|
|
|
|
|
Remember I said you would need someway to stop them? It's just a variable - when you start killing things, you can stop the task with it, once you have closed the connection in your main routine. (I have only ever been a fan of "while(true)" loops in real-time software!)
All those who believe in psycho kinesis, raise my hand.
|
|
|
|
|
I am trying to read text from an external application using GetWindowText. It works just fine for all of the other languages in the software I am trying to read from. (German, English, French) However, it fails when it tries to read in Cyrillic (Russian), Arabic, Japanese. All it gets is a bunch of question marks. Here is the code that I am using.
[DllImport("User32.dll", CharSet = CharSet.Unicode)]
public static extern Int32 GetWindowText(int hWnd, StringBuilder s, int nMaxCount);
Win32.GetWindowText(hWnd, formDetails, 512);
When I display the text using a textbox is is merely a bunch of "?????? ????? ?? ???????".
I know it has nothing to do with the textboxes inability to display those languages because if I directly drop a string of Cyrillic into a variable in C# and display it in the box, it display just fine. What am I doing wrong?
-Elmernite
|
|
|
|
|
Message Closed
modified 23-Nov-14 7:12am.
|
|
|
|
|
I've read it, but that doesn't really help, unless I missed it somewhere.
See as a general rule, my program doesn't really display the other languages (what the article you post was mostly about), I just need to read in the languages of the other software so I know what language that software is currently in.
I'm guessing the GetWindowText or StringBuilder has problems reading in the aforementioned languages. That is what I need help with.
-Elmernite
|
|
|
|
|
I want to create a DataGridView with custom headings. Basically, I want to place a Panel with a number of controls in each heading cell. To do this I have created a new class which inherits DataColumn:
public class GenericDataColumn : DataColumn
{
private int columnIndex;
private string columnName;
private Panel panel;
private DataGridView table;
private Size initialPanelSize;
private Point[] initialControlLocations;
public GenericDataColumn(int columnIndex,
string columnName,
Panel panel,
DataGridView table)
{
this.columnIndex = columnIndex;
this.ColumnName = columnName;
this.table = table;
this.panel = panel;
this.initialPanelSize = panel.Size;
this.initialControlLocations = new Point[panel.Controls.Count];
for (int i = 0; i < panel.Controls.Count; i++)
{
initialControlLocations[i] = panel.Controls[i].Location;
}
}
}
Whenever the table is scrolled or resized or the column is resized I need to resize the Panel and possibly move around the controls inside the Panel. I wrote the following method to do that:
private void cutPanel(int cutFromLeft, int cutFromRight)
{
int newPanelWidth = initialPanelSize.Width;
if (0 < cutFromLeft)
{
newPanelWidth -= cutFromLeft;
}
if (0 < cutFromRight)
{
newPanelWidth -= cutFromRight;
}
panel.Width = newPanelWidth;
if (0 <= cutFromLeft)
{
for (int i = 0; i < panel.Controls.Count; i++)
{
panel.Controls[i].Location = new Point(
initialControlLocations[i].X - cutFromLeft,
initialControlLocations[i].Y);
}
}
}
In the Paint event I can easily determine what the new position and dimension of the Panel should be:
DataGridView.GetCellDisplayRectangle(columnIndex, -1, true);
However, this information alone is not enough to determine the cutFromLeft and cutFromRight parameters in the cutPanel method. What's the best way to determine those parameters? Am I forced to micro-manage all the "geography-related" events (DataGridView scroll, DataGridView resize, and column resize) or is there an easier way to do it?
|
|
|
|
|
Just a wild guess from my side:
How about setting AutoSize property of the Panel to true or to set its Dock property to fill.
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
No, unfortunately that won't work. Whenever a "geographical" event occurs, we are responisble for moving and resizing the Panel according to the new header cell location and size. No auto-property is smart enough to do this.
|
|
|
|
|
I was hoping that Panel would be the Column's control and then this should work when you re-size the column. I guess that is not the case.
Now, IMHO, the only way is to track the resize and do the same for the Panel.
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
Oh, I see, you're suggesting I should add the Panel to the GenericDataColumn instead of the DataGridView. I will try that and see what happens.
|
|
|
|
|
It doesn't seem to be possible to add Panels to a DataColumn. Therefore, I have to add it to the table instead and do Paint-event workaround.
|
|
|
|
|
That is what is coming to my mind at this point of time.
50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
|
|
|
|
|
If you create a custom control with an expandable property (i.e. it has a "+" in the properties window which expands to show you the individual subfields - similar to the Size property of most controls), how do you control the display order of these sub fields?
I have got the control working, with an expandable property containing minWidth, initialWidth and maxWidth, but in the designer they always display in aphabetical order: initialWidth, maxWidth, minWidth. I know it is possible (Size displays as Width first, then Height) - but google is being unhelpful as to how!
All those who believe in psycho kinesis, raise my hand.
|
|
|
|
|
Hello,
In your ExpandableObjectConverter you have to override the GetProperties method, like this:
public override PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object value, Attribute[] attributes)
{
return TypeDescriptor.GetProperties(typeof(YourClass), attributes).Sort(new string[] { "FirstProperty", "SecondProperty", "..." });
}
Hope it helps!
All the best,
Martin
|
|
|
|
|
Martin# wrote: Hope it helps!
Oh yes! Perfect - thank you!
All those who believe in psycho kinesis, raise my hand.
|
|
|
|
|
Glad I could help!
All the best,
Martin
|
|
|
|
|
Hi,
I'm working on an application, in which, if the left mouse button is down, and user tries, I'm assigning a new delegate for Mouse wheel event, which does nothing. after completing the execution of new delegate the old delegate is triggered.
Can anyone explain this to me.
Thank you,
Pavan
|
|
|
|
|
Do you mean something like this?
MouseWheel += new MouseEventHandler(Form1_MouseWheel);
This just means, that you also want to be notified if this event occurs.
Your event handler was just added to a list of delegates from controls which also
want to be notified.
With += you just add and with -= you just remove your delegate from the delegate list.
Greetings
Covean
|
|
|
|
|
Your scroll handler could simply determine whether or not the left button is down and act accordingly.
|
|
|
|
|
Hi, I have XML in the following structure:
<Rooms>
<Room>
<RoomRQId>1</RoomRQId>
<Quantity>1</Quantity>
<NumAdults>3</NumAdults>
</Room>
<Room>
<RoomRQId>2</RoomRQId>
<Quantity>1</Quantity>
<NumAdults>2</NumAdults>
</Room>
</Rooms>
And each time, I get the values assigned as the first occurence of room. Running in debug mode, I can see the second node called within the For each loop, but the values are still assigned as the second occurence. Code below:
XmlNodeList nodeRooms = xmlDoc.SelectNodes("/test:HotelAvail/test:Rooms/test:Room", ns);
foreach (XmlNode objRNode in nodeRooms)
{
intRoomRQId = int.Parse(objRNode["RoomRQId"].InnerText);
strQuantity = objRNode["Quantity"].InnerText;
intNumAdults = int.Parse(objRNode["NumAdults"].InnerText);
}
So IntRoomRQID is set as 1 twice, when it should create a node of 1, and then a node of value 2.
|
|
|
|
|
The poblem is this bit of code:
jamesc69 wrote: foreach (XmlNode objRNode in nodeRooms)
{
intRoomRQId = int.Parse(objRNode["RoomRQId"].InnerText);
strQuantity = objRNode["Quantity"].InnerText;
intNumAdults = int.Parse(objRNode["NumAdults"].InnerText);
}
It will set the 3 variables (intRoomRQId , strQuantity intNumAdults ), move to the next node then, before you have done anything with them, re-set with the values from the next node. The code posted will always end up with the variables set to the value of the last node.
To fix this you either need to do whatever it is you need to do with the variables in the loop, or create an object to store the three variables, and maintain a List of these which can be iterated over later.
As a side note intRoomRQId , strQuantity and intNumAdults are poorly named, you shouldn't include the type in the variable identifier in C#, and fully named is better. This will improve the readability of your code. I suggest roomRequestId (or whatever RQ means), quantity and numberOfAdults
CCC solved so far: 2 (including a Hard One!)
37!?!! - Randall, Clerks
|
|
|
|
|
Hi, this is merely a snippet. The variables are used within the loop, (but I didn't include all that). In debug, each variable is set to the first node value, and then when it loops through again, it sets it again to the first node value. Therefore it is looping the correct number of times, the problem seems to be in identifying the xpath to then set the variable to each occurence.
|
|
|
|
|
Can you post fuller code?
Also is the code being called the correct number of times (ie twice) even if the code is only setting from one node?
[Edit]
I ran this scratch code:
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml("<HotelAvail><Rooms><Room><RoomRQId>1</RoomRQId><Quantity>1</Quantity><NumAdults>3</NumAdults></Room><Room><RoomRQId>2</RoomRQId><Quantity>1</Quantity><NumAdults>2</NumAdults></Room></Rooms></HotelAvail>");
XmlNodeList nodeRooms = xmlDoc.SelectNodes("HotelAvail/Rooms/Room");
foreach (XmlNode objRNode in nodeRooms)
{
Console.Write(objRNode["RoomRQId"].InnerText);
Console.Write("\t");
Console.Write(objRNode["Quantity"].InnerText);
Console.Write("\t");
Console.WriteLine(objRNode["NumAdults"].InnerText);
}
Console.ReadKey();
This code outputs as expected:
1 1 3
2 1 2
So it is something else inside the loop causing the problem
CCC solved so far: 2 (including a Hard One!)
37!?!! - Randall, Clerks
modified on Monday, January 11, 2010 6:20 AM
|
|
|
|
|
The entire project is huge and references several classes, so it's impossible to include the whole code, below is a more concise example of what is occuring. Basically for every occurence of the "Room" node, I populate a datatable with the variables, and then write an output. It loops through my for each loop twice, but sets the variables each time to the first occurence only. And therefore I get two nodes output, which are both derived from the first datatable created, and the first set of room child nodes in the xml document. The rest of this project is working 100% perfectly, but this is the only area where I need to loop through a list of nodes, as all other nodes occur once.
XmlNodeList nodeRooms = xmlDoc.SelectNodes("/test:HotelAvail/test:Rooms/test:Room", ns);
foreach (XmlNode objRNode in nodeRooms)
{
intRoomRQId = int.Parse(objRNode["RoomRQId"].InnerText);
strQuantity = objRNode["Quantity"].InnerText;
intNumAdults = int.Parse(objRNode["NumAdults"].InnerText);
DataTable dt = objAvailability.SelectHotelAvail(intRoomRQId, strQuantity, intNumAdults);
if (dt.Rows.Count >0)
{
objWriter.WriteStartElement("Room");
objWriter.WriteStartElement("RoomRQId");
objWriter.WriteString(intRoomRQId.ToString());
objWriter.WriteEndElement(); //RoomRQID
..... other items from datatable are written here
}
}
|
|
|
|
|