Tagged Questions
0
votes
2answers
301 views
How to represent a 3-tier architecture in UML?
I have an windows application developed, and I need to document its architecture. I made a 3-tier diagram according to Microsoft Practices and Patterns, but my chief wants a representation made from ...
0
votes
2answers
145 views
How to clear a timer when timer using every 1/10 second
I have a timer running every 1/10 second (Interval = 100). It is in an infinte loop because I want to load a site on my WebBrowser control and get info into a span ID each time it loads. My problem is ...
2
votes
2answers
279 views
How to get text from StreamReader in C#
private void button1_Click(object sender, EventArgs e)
{
string url = urlTextBox.Text;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
HttpWebResponse response = ...
2
votes
2answers
1k views
How to skip the dialog of printing in printDocument.print() and print page directly?
When I use MyPrintDocument.print() in a Windows application written in C#, a dialog is shown for the Windows processing print routine with a cancel button. I don't want this dialog shown, is it ...
2
votes
1answer
555 views
mouse event fires when I mouse over child control
Ok, so I have this control that has some other controls on it.
I have set the controls mouse enter and mouse leave events. My problem is that the mouse leave event fires if I mouse over any of the ...
4
votes
1answer
695 views
deploy Crystal report on client machine just by copying of rquired DLL?
Hello every one
We are using CR 2010 for .net and in client side we need just CR reportviewr
Are there any walkthroughs that copy crystalreport dll files in Bin directory and copy these file in ...
2
votes
4answers
271 views
CType and Type casting Exception
Public Property Duration() As Integer
Get
Try
Return CType(Item(DurationColumn), Integer)
Catch e As Global.System.InvalidCastException
Throw New ...
0
votes
1answer
242 views
repainting the controls without flicker
How can we repaint our controls at run-time without flicker (hiding them first and showing them afterwards)?
Thank you
0
votes
2answers
38 views
How to paint our changes in runtime before its being viewe by user
I am having a windows form that whenever I want its controls like picturebox update normally I need to hide it and show it to let the cahnges happen. This causes a blink which I want to avoid.
Does ...
0
votes
1answer
78 views
Resources related to Hiding and showing a windows form
I have a form which has a picturebox and after clicking on a button another form will appear with a picture box containing the exact same picture.
I use this line of code:
Image1.Image = ...
0
votes
1answer
30 views
A strange minor problem in moving a picture from a box to another
Hey Guys.
I am having this simple line of code:
Image1.Image = vImage.Image
Image1 is a picture box in child window and vImage is a picture box in parent window. When I open the child window for ...
0
votes
2answers
199 views
problem with datediff and dateadd function
If DateDiff(DateInterval.Day, moDoBooking.m_CurrentDay, moDoBooking.m_BaseDay) _
> DateDiff(DateInterval.Day, DateAdd(DateInterval.Day, _
...
1
vote
6answers
132 views
Changing the value of a String in C# WinApp forever?
Assume I have a String Field in my WinApp like below :
public string UsingTheApplicationFrom =
"Not Yet";
Now , I wanna to change the value of the field forever, in first running of my ...
1
vote
2answers
401 views
DataGridview repaints very slowly
I'm using datagridview in windows application developed in C# VS2005 .net 2.0.
Datagridview is provided a list of business objects. It take annoying delay of 2-3 seconds before starting displaying ...
1
vote
3answers
3k views
high DPI problems
I have a problem with the display of our .NET Windows application under high dpi settings.
All forms are set to AutoScaleMode = DPI, but this does not solve all the problems.
Basically labels end up ...
0
votes
4answers
2k views
How to delete a file used by other process
Here's the deal.
My WinApp is running, right? in let's say process 'A'.It creates a file and keeps the handle (keeps the file open for writing, this is a must).
Then it starts other msbuild ...