Search found 164 matches

by FrankAndrew
Wed Jan 29, 2020 11:34 pm
Forum: PowerShell Studio
Topic: Resizable windows acting up on left monitor when resizing
Replies: 10
Views: 6933

Re: Resizable windows acting up on left monitor when resizing

How are thngs progressing with this problem?
by FrankAndrew
Tue Jan 14, 2020 4:02 am
Forum: PowerShell Studio
Topic: Resizable windows acting up on left monitor when resizing
Replies: 10
Views: 6933

Re: Resizable windows acting up on left monitor when resizing

Sounds like a good plan.

Ich bin gespannt was raus kommt.

Thanks Alex.
by FrankAndrew
Tue Jan 14, 2020 2:23 am
Forum: PowerShell Studio
Topic: Resizable windows acting up on left monitor when resizing
Replies: 10
Views: 6933

Re: Resizable windows acting up on left monitor when resizing

PowerShell Studio dialog/windows/forms do NOT have this problem.
But it DOES occur when the same Version of PowerShell Studio is running the program in debug mode.
Maybe that tells you which MS libs are being used.
by FrankAndrew
Tue Jan 14, 2020 2:15 am
Forum: PowerShell Studio
Topic: Resizable windows acting up on left monitor when resizing
Replies: 10
Views: 6933

Re: Resizable windows acting up on left monitor when resizing

Hi Alex, I have only seen this with PowerShell and the EXEs that I have created with it. I had been observing this for the last month and investigated today. I just found out today that it had to do with the X < 0 values. I have seen NO other programs that act like this. I would hope that you guys c...
by FrankAndrew
Tue Jan 14, 2020 12:34 am
Forum: PowerShell Studio
Topic: Resizable windows acting up on left monitor when resizing
Replies: 10
Views: 6933

Resizable windows acting up on left monitor when resizing

Product, version and build: PowerShell Studio 2019, 5.6.170 32 or 64 bit version of product: 64bit Operating system: Windows 10 Enterprise (1809) 32 or 64 bit OS: 64bit I have discovered a problem with resizable windows/dialogs/forms when they are located on a monitor LEFT of the Primary monitor. (T...
by FrankAndrew
Wed Aug 07, 2019 7:07 am
Forum: PowerShell GUIs
Topic: Formatting cells of a DataGridView best place for the code?
Replies: 12
Views: 4905

Re: Formatting cells of a DataGridView best place for the code?

I think I now understand why you added this line:

Code: Select all

#Event Argument: $_ = [System.Windows.Forms.DataGridViewCellFormattingEventArgs]
That is the e-> from the MSDN help.

Thanks for your help
by FrankAndrew
Wed Aug 07, 2019 6:48 am
Forum: PowerShell GUIs
Topic: Formatting cells of a DataGridView best place for the code?
Replies: 12
Views: 4905

Re: Formatting cells of a DataGridView best place for the code?

Hi jvierra, Sorry to bother you again with a beginners question in the MSDN help for the DataGridView_CellFormatting function it shows: void dataGridView1_CellFormatting( Object^ /*sender*/, DataGridViewCellFormattingEventArgs^ e ) How do I get that information for the DataGridViewCellFormattingEven...
by FrankAndrew
Wed Aug 07, 2019 5:54 am
Forum: PowerShell GUIs
Topic: Formatting cells of a DataGridView best place for the code?
Replies: 12
Views: 4905

Re: Formatting cells of a DataGridView best place for the code?

Hi jvierra,

Thanks for the quick reply.

Do I see that correctly that this is a new defined function that could be called from anywhere?
If this is a free standing function how do I associate it to a specific cell or column of cells?
by FrankAndrew
Tue Aug 06, 2019 11:39 pm
Forum: PowerShell GUIs
Topic: Formatting cells of a DataGridView best place for the code?
Replies: 12
Views: 4905

Formatting cells of a DataGridView best place for the code?

Hi Everyone, Now that I have really dived into the Windows Forms usage through PowerShell Studio I have a question in regards to the best code loaction placement for formatting the cell contents in a DataGridView based on the cells value. The place where I current have the formatting and the setting...