Questions tagged [winapp]
97 questions
0
votes
0 answers
Why does winapps.InstalledApplication return an installed_location of None for Edge?
I'm trying to extract file location using winapps but the result is always None
from winapps import *
name="Microsoft Edge"
cc=InstalledApplication(name)
vv=cc.install_location
print(vv)
user11913168
0
votes
1 answer
How to display rdlc report in Visual Studio 2017 Community
I am trying to add a .rdlc report to a C# Windows application using Visual Studio 2017 Community, but the ReportViewer control shows as a non-visual component below the form.
I have tried the solution I found here:…

UwakPeter
- 341
- 2
- 6
- 26
0
votes
3 answers
How to delete button border after clicking outside of Form C#?
I made a simple button, but when i click outside of win form my button getting a black border. By the way i set BorderSize to "0" and it works great while i clicking inside of my form.
this.button.FlatAppearance.BorderSize = 0;
That's how it looks…

Ryan Cowl
- 53
- 1
- 4
0
votes
0 answers
Cannot open my application through Appium script
I am trying to automate my application and it is Windows 10 app. I am using winapp driver and Appium to automate this.
When the script tries to launch the application I encounter the below error.
Request your help in this regard please.
PS - I tried…

sairam p
- 11
- 2
0
votes
1 answer
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

Faulty Orc
- 955
- 4
- 13
- 24
0
votes
2 answers
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 anybody know what are my options?
It is a picture…

Faulty Orc
- 955
- 4
- 13
- 24
0
votes
1 answer
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 = vImage.Image
The thing is after I do this i need to hide the…

Faulty Orc
- 955
- 4
- 13
- 24
0
votes
1 answer
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 the first time, I see a complete blank picture in…

Faulty Orc
- 955
- 4
- 13
- 24
0
votes
1 answer
How to suspend a thread by another thread in C#?
Sorry for my bad English. Hope someone suggests me a better version of my question.
I've searched but seemed like I couldn't find the answer for my problem.
Currently, I'm writing a C# WPF app. This app will perform a heavy task in a long time.…

peanut
- 133
- 3
- 11
0
votes
2 answers
problem with datediff and dateadd function
If DateDiff(DateInterval.Day, moDoBooking.m_CurrentDay, moDoBooking.m_BaseDay) _
> DateDiff(DateInterval.Day, DateAdd(DateInterval.Day, _
Convert.ToDouble(moDoBooking.oBooking.oFacility.ADAYS), moDoBooking.m_BaseDay), _
…

Faulty Orc
- 955
- 4
- 13
- 24
0
votes
1 answer
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 the window from a main window and with a…

Mohammad Dayyan
- 21,578
- 41
- 164
- 232
0
votes
1 answer
control focus issue in windows application having dev express grid
I am working on window application having dev. express grid whose tab index is set 35, and a text box having tab index 1, but when page loads tab stops on grid's find panel. I want focus on the text box. I tried to set focus on load event but not…

Karuna Soni
- 23
- 9
0
votes
1 answer
unable to using winapp
I am unable to run the code
capabilities.setCapability("app", "C:\\Windows\\System32\\calc.exe");
CalculatorSession = new IOSDriver(new URL("http://127.0.0.1:4723"), capabilities);
this code opens the calculator app but it say IOSDriver is wrong…

teja
- 127
- 2
- 11
0
votes
0 answers
Creating Win 8 App With TypeScript and make Master page
I am trying to create Win 8 app using TypeScript .. I want to make master page .. so what i did was using this code