Search found 5 matches

by echo8hink
Saturday 18th February 2023 5:12pm
Forum: General
Topic: Unable to install from software farm - Unknown Arc format?
Replies: 5
Views: 4765

Re: Unable to install from software farm - Unknown Arc format?

Thanks for the responses. I was afraid I broke something, because that hardly ever happens... :roll:
At least I can still use the farm web location. I learn so much from the programs there.

-hink
by echo8hink
Friday 17th February 2023 4:51pm
Forum: General
Topic: Unable to install from software farm - Unknown Arc format?
Replies: 5
Views: 4765

Unable to install from software farm - Unknown Arc format?

Recently I have not been able to use the software farm options from the IDE to download or download + install examples from the Software Farm. The files seem to download. I get the progress bard counting then a message box pops up with the error "Unable to install [name ver of software]:" ...
by echo8hink
Saturday 5th February 2022 6:28pm
Forum: Component
Topic: Set Column Width in DataComboView Control
Replies: 0
Views: 15605

Set Column Width in DataComboView Control

Has anyone figured out how to set the column widths for data shown in a DataComboView control? I know how to set in in a DataBrowser with Column[0].W and thought it would be similar but I can't seem to get anything to work. I think DataComboView uses string arrays to put table field data in view??? ...
by echo8hink
Monday 31st January 2022 4:31am
Forum: General
Topic: textarea line count
Replies: 4
Views: 2508

Re: textarea line count

I find total lines in a textarea control with two steps: Dim totalLines As Integer 'move cursor to last position (the end) of text area TextArea1.CursorAt(TextArea1.Length) 'get total lines from last line number in text area totalLines = TextArea1.Line With autowrap turned on, you may have to hunt t...
by echo8hink
Saturday 3rd April 2021 1:57am
Forum: General
Topic: Print Preview
Replies: 6
Views: 5641

Re: Print Preview

I use the following snippet to activate print preview of a data report from a form button click: 'Call a report preview from a form button 'snippet code only Static Public $hReport As Report Public Sub Button3_Click() 'print recipe preview from button click on form 'renew the report for each run 're...