Questions tagged [winapp]

97 questions
-2
votes
1 answer

WINAPI showing/hiding controls on TabControl

What is convenient way of handling showing/hiding of controls on TabControl in Windows API? I have seen examples where was implemented reaction on message WM_NOTIFY/TCN_SELCHANGE and then iterating thru all controls and picking what to show/hide by…
odo
  • 23
  • 4
-2
votes
1 answer

PyWinAuto GUI test

In my current work, I need to automate tests for a 3rd party Windows based logic programming app. 1) I want to start an application, 2) Specify the window to work on, 3) Find all the controls and properties 4) Finally get the output values from the…
Hossain
  • 235
  • 1
  • 3
  • 15
-2
votes
2 answers

Windows 8 equivalent for windows phone marketplacesearchtask

Does anyone know if there is an equivalent of the MarketplaceSearchTask of window phone for Windows 8? I'm going to launch a series of applications onto the windows 8 marketplace and I would like to users could push it somewhere else. Then you…
-3
votes
1 answer

Detecting closest picturebox

I ran into a problem while working on my platform game (once again :D) and i couldn't really found solution for it.. so here is the code: Blocks.AddRange(this.Controls.OfType()); if (Blocks.Any(x => x.Location.Y - Player.Height <=…
P. Pett
  • 7
  • 2
-4
votes
2 answers

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) { . . .////some codes . x=u divide 10^2; …
Arash
  • 3,013
  • 10
  • 52
  • 74
-5
votes
1 answer

What shall I do to handle dual monitor issue in my delphi application. Using api or application implement in .NET C# code

I want to create a api which can keep track of my delphi application's forms in dual monitor if form open on second monitor then next form should be there. this track will be done my api in c# windows app. please guid Description: I have an delphi…
-10
votes
1 answer

How do I put this into one line?

with open('output.txt', 'w') as f: for item in winapps.list_installed(): print(item, file=f) So I have this basic code. How could I make it into line? without including the with open, as other stuff is included later on. I was…
Cezar
  • 15
  • 1
  • 6
1 2 3 4 5 6
7