Search found 493 matches

by stevens
Thu Jul 21, 2022 9:48 am
Forum: Former and Future Customers - Questions
Topic: Quick, responsive UI with all screens fit?
Replies: 1
Views: 2554

Quick, responsive UI with all screens fit?

Hi,

I'd like to make a quick an responsive ps gui which fits all screens (ultra wide to laptop sizes).
Any tips for that? F.e. 800 * 600 size, probably not to much to load at startup... But also when generating exe some specific settings etc?

S.
by stevens
Wed Jul 20, 2022 1:48 pm
Forum: Former and Future Customers - Questions
Topic: Systray icon which hides or shows form in click?
Replies: 1
Views: 2071

Systray icon which hides or shows form in click?

Hi, I posted a similar question before and therefore approaching this from different angle. I got a Sapien ps Project which is a form which shows gridview of software installed on the local machine and all kind of actions on it via right click menus. That project I created an msi installer for via p...
by stevens
Wed Jun 15, 2022 2:57 am
Forum: PowerShell GUIs
Topic: Powershell studio: create MSI, cannot change company
Replies: 3
Views: 825

Re: Powershell studio: create MSI, cannot change company

Correct, those are my settings. I change it there but it sticks to other values. No clue where they come from.
by stevens
Tue Jun 14, 2022 5:20 am
Forum: PowerShell GUIs
Topic: Powershell studio: create MSI, cannot change company
Replies: 3
Views: 825

Powershell studio: create MSI, cannot change company

Hi, I have an msi which I generated from a form. Whatever I do, I cannot change the installation folder or Publisher in add/remove program. It always takes the Company name to which Powershell Studio is registered (add/remove program "Publisher", then c:\programfiles\companyname, would lik...
by stevens
Sun May 08, 2022 3:16 am
Forum: PowerShell GUIs
Topic: Bring cursor to top in richtextbox after enter then
Replies: 17
Views: 2607

Re: Bring cursor to top in richtextbox after enter then

Note: tried a textbox instead of a richtextbox but I don't see any difference. Now the cursor even doesn't go to top once entered (in the textbox). I then added $textboxInput.Text = '' $textboxInput.Clear() $_.Handled = $true But cursor doesn't go to top at all now. So I better stick to richtextbox ...
by stevens
Thu May 05, 2022 1:56 am
Forum: PowerShell GUIs
Topic: Richtextbox: set only specific text in bold and/or other color
Replies: 2
Views: 883

Richtextbox: set only specific text in bold and/or other color

Hi, I have a richtextbox in which I'd like to set only specific text to bold and/or red color. I now have f.e. richtextbox1.text += 'MyText' If I'd like to add $richtextbox1.text += 'MyTextBold', how do I do that? Tried with $richtextbox1.SelectionFont.Bold = $true but it says it is readonly(?) Than...
by stevens
Wed May 04, 2022 8:17 am
Forum: PowerShell GUIs
Topic: Bring cursor to top in richtextbox after enter then
Replies: 17
Views: 2607

Re: Bring cursor to top in richtextbox after enter then

Thanks!
About your remark: not sure howto deal with it differently?
by stevens
Tue May 03, 2022 6:14 am
Forum: PowerShell GUIs
Topic: Bring cursor to top in richtextbox after enter then
Replies: 17
Views: 2607

Re: Bring cursor to top in richtextbox after enter then

I posted the script (example of it) here: viewtopic.php?p=82544#p82544
That to clarify why I do use the enter. Would appreciate your input!
by stevens
Tue May 03, 2022 5:43 am
Forum: PowerShell GUIs
Topic: Have form in right bottom corner?
Replies: 15
Views: 3178

Re: Have form in right bottom corner?

Thanks. Works fine now, only thing is that I did have to add -20 $x = [system.windows.forms.screen]::PrimaryScreen.Bounds.Width - $formChatBot.Bounds.Width $y = [system.windows.forms.screen]::PrimaryScreen.Bounds.Height - $formChatBot.Bounds.Height $formChatBot.Location = [System.drawing.point]::New...
by stevens
Tue May 03, 2022 5:00 am
Forum: PowerShell GUIs
Topic: Systray icon: click to open form?
Replies: 4
Views: 3345

Re: Systray icon: click to open form?

Created a sample form in att.. -It works fine but "hide in taskbar" still shows a minimized window in left corner. -2 icons or show at startup ... -I'd like to set extra menuitem which says "disable/enable at startup" but default it should start at windows startup. How can I do t...