Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

Uri.AbsolutePath messes up path with spaces

In a WinApp I am simply trying to get the absolute path from a Uri object: Uri myUri = new Uri(myPath); //myPath is a string //somewhere else in the code string path = myUri.AbsolutePath; This ...
4
votes
3answers
348 views

Windows App spellcheck

I was wondering if there is another way to spell check a Windows app instead what I've been of using: "Microsoft.Office.Interop.Word". I can't buy a spell checking add-on. I also cannot use open ...
3
votes
1answer
316 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
5answers
141 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 ...
1
vote
2answers
60 views

ListView with different text alignments?

How to set a ListView to align some columns right and some columns left? I mean that I have a ListView that its layout is left to right but I want to be alignment of second column and anything under ...
1
vote
1answer
107 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 ...
1
vote
6answers
118 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
3answers
86 views

Should I do Win Application?

It's a question comes to my mind all the time and So i would like to share , And know you mature programmers opinion's . Unfortunately i spent some years of my life doing Graphic (web) and suddenly ...
0
votes
1answer
69 views

Selectively Enable Visual Styles on Dialogs/Windows

I've implemented the use of visual styles on all common controls through the use of a manifest file as directed by this article - http://msdn.microsoft.com/en-us/library/bb773175.aspx. Is there a way ...
0
votes
1answer
112 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
28 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
54 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
23 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
98 views

problem with datediff and dateadd function

If DateDiff(DateInterval.Day, moDoBooking.m_CurrentDay, moDoBooking.m_BaseDay) _ > DateDiff(DateInterval.Day, DateAdd(DateInterval.Day, _ ...
0
votes
1answer
160 views

StartPosition problem in C#?

I wanna show my WinApp in Center Screen, so I set StartPosition property to CenterScreen but the window doesn't show in center of screen. What's wrong with it ? Am I missing something? P.S: I show ...
0
votes
1answer
377 views

How to populate nodes of a TreeView? (C# winforms)

I have a SQL Server Compact Edition Database file, and I want to display all the tables on it as nodes into a TreeView control in my windows application. Unfortunately, I don't know how to. This ...
0
votes
2answers
254 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 ...
0
votes
3answers
1k 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
1answer
607 views

can a Flash app running in browser connect to localhost to get data from another app?

it seems that Flash was supposed to run in a sandbox in the browser. But, if Flash can get data from a remote server, can it similarly get data from localhost IP on the same machine? In other words, ...
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 ...
-3
votes
2answers
102 views

text on progressbar in c# [closed]

I am using the following code. Why does it not run properly ? private void Form1_Shown(object sender, EventArgs e) { for (int i = 1; i <= 100; i++) { Application.DoEvents(); ...
-4
votes
2answers
152 views

implement Pseudocode code without return in c#

how can i implement this Pseudocode without return in c#(because i want to use it in button event handler)?thanks edited: large_int example(large_int u,large_int v) { . . ...