Clarion 7 Alpha

Clarion, Clarion 7

Модератор: Дед Пахом

Правила форума
При написании вопроса или обсуждении проблемы, не забывайте указывать версию Clarion который Вы используете.
А так же пользуйтесь спец. тегами при вставке исходников!!!
Аватара пользователя
Admin
Администратор
Сообщения: 3959
Зарегистрирован: 05 Июль 2005, 15:59
Откуда: Хабаровск
Благодарил (а): 25 раз
Поблагодарили: 22 раза
Контактная информация:

Сообщение Admin »

Похоже SV в который раз профукало свои обещания ... :evil:
Рай совершает ошибки ничуть не реже чем ад. Просто у него хорошая пресса
Денис
Бывалый
Сообщения: 70
Зарегистрирован: 07 Июль 2005, 5:39
Откуда: Хабаровск
Контактная информация:

Сообщение Денис »

В этом они спецы :evil:
Аватара пользователя
Admin
Администратор
Сообщения: 3959
Зарегистрирован: 05 Июль 2005, 15:59
Откуда: Хабаровск
Благодарил (а): 25 раз
Поблагодарили: 22 раза
Контактная информация:

Может кому интересно

Сообщение Admin »

Readme for Clarion 7.0 build 2430 (beta)

Window Designer:
===================
- The new Window Designer now creates a default USE variable for any control that does not have one.
This is by design and it does not affect runtime behavior.

- Tab Index Order
Right-click and from the context menu choose "Show Tab Order", or from the menu choose Window Designer->Format-Show Tab Order. Show Tab order displays and allows you to change the TAB order sequence the controls on the window will follow. The first tab in the order is index zero (0).

To change the TabIndex property and see the effect immediately while still in the Designer, use the Show tab order interface (i.e. on the right-click menu).

The other method to set Tab order is to use the control's property page and set the TabIndex property to the desired value. But note that if you set the TabIndex property using the control's property page, the z-order is not updated until you save and exit the Window Designer.

- UseVisualStyles
UseVisualStyles is a new property available in a controls "Design" category
Set this TO TRUE to display the control in a Visual Style appearance (as if the XP manifest was active)

- To make use of the new Menu Styles your ?menubar item *must have a USE variable

- SuppressTransparency
The Window Designer is based on the .Net Framework. The Framework has limited support for Transparency within
nested and overlapping controls. For some window designs this can create an illusion that controls have disappeared within the Designer. By default Transparency on controls is suppressed within the Window Designer. You can permanently change the default for SuppressTransparency property via the Tools->Options->Window Structure Designer menu option. You can also toggle the SuppressTransparency setting for all controls on the window during any Designer session using the appropriate button on the Designer toolbar. And you can also toggle the SuppressTransparency property setting at the control level using the control's "SuppressTransparency" property found in the controls "Design" category within the Property grid.

- Parenting of Controls and overlap/transparency
Here is an example of a Window where controls might appear to have vanished:

QuickWindow WINDOW('Orders'),SYSTEM,AT(,,298,85),CENTER,MDI,FONT('MS Sans Serif', 8, COLOR:Black),GRAY,IMM,RESIZE
STRING('Customer:'), AT(5,5,46,10), USE(?STRING9), FONT('MS Serif', 10,, FONT:bold), TRN
STRING(@s35), AT(53,5,115,10), USE(GLOT:CustName), FONT(,, COLOR:Red, FONT:bold)
STRING('Cust #:'), AT(172,4,33,10), USE(?STRING8), FONT('MS Serif', 10,, FONT:bold)
STRING(@n07), AT(205,5,,10), USE(CUS:CustNumber), FONT(,, COLOR:Red, FONT:bold)
PANEL, AT(4,1,268,19), USE(?PANEL1), BEVEL(2,-1)
END


Note that the PANEL is defined last and is on top of the STRING controls. If you load this Window into the Designer
you won't see the STRING controls unless you either:

a) Toggle "SuppressTransparency" on the PANEL, or on the Window itself.
Note that toggling the transparency makes the STRING controls visible,
but they cannot be selected because to Windows OS they are underneath the PANEL.
This is expected behavior because that is the actual the z-order of the controls.

b) Set a proper Tab Index order (z-order). In this case it's clear the intent was for the STRING controls to sit
on top of the PANEL, not the other way around. In this example the PANEL should have a Tab Index order of
zero (1st control), and changing the Tab Index of the PANEL to zero will change it's position within the
structure so that it is declared before the STRING controls.


- In the C6 Report and Window Formatters, when you select several controls in order to align them
the reference control is always the last one selected. In the C7 Designers, the reference control
is now the first control selected.


- Rotated Text
There is a change in behavior for C7 on Windows and Reports that use rotated strings with angles
equal to 90, 180 and 270 degrees. The new behavior adds support for rotated strings for justification and offset.

Old behavior: every rotated string was centered vertically and horizontally and then rotated on the requested angle.
New behavior: Only for strings with angles equal to 90, 180 and 270 degrees (any other angle will work same as in C6)

The change is that for the specified angles the string is not centered on the vertical and horizontal plane any more.
For 90: The string is aligned to the left horizontally and uses the string justification and offset to move vertically.
For 180: The string is aligned to the bottom vertically and uses the justification to move horizontally
For 270: The string is aligned to the left horizontally and uses the string justification and offset to move vertically.


Project system:
===================
- Don't forget to update the Clarion70.Red file to account for any addon products you are using.
To edit the redirection file, select the "Edit base redirection file" option located in the IDE "Tools" menu.

- In some C6 projects "Index checking" might be set to OFF,
allowing the application to ignore arrays that are out of bounds.

When load a Project into C7, the project options turn this ON by default.
This is expected behavior. In C6 you could only save one set of settings.
In C7 you can store different settings for debug and release builds. The C7
Project System turns on additional checking in debug mode.

- In Clarion 7 the setting of how the project is built (Release or Debug) is not an attribute of a project,
instead it is a setting in the IDE. The menu option: Build ->Set Configuration controls whether the
compilation is in Release or Debug mode.

See: OnLine Help -> Integrated Development Environment -> General Setup and Navigation -> General Environment Menu
Commands


Help System:
===================

- There are several areas of the help file that are still "work in progress", particularly in many of the FAQs.
Your comments are always welcomed in the newsgroups, but this note is to let you know that we are diligently working
to update these tutorial topics. Many will include new Flash movies that will integrate well into the new HTML Help
environment.

Runtime Libraries:
===================
- all of the Clarion runtime libraries use a naming convention of C70*.dll for dynamic link, and C70*L.lib for Local Link.

- The HTML Help Libraries have been renamed in C7.

Old name: cwHH60.LIB, cwHHL60.LIB

New Name: C70HH.LIB, CWHHL.LIB

In a project you open in C7 that isusing HTML Help support, replace the library reference with new the one.


Miscellaneous:
===================
- Care must be taken when you mix Tabbed MDI windows with windows that use the ToolBox attribute. Since a window with
the ToolBox attribute can never really hold focus, the MDI tab for any Window with the ToolBox attribute will never become
the "Active" tab, with two exceptions:

a) If the ToolBox window calls a Non-ToolBox window. In which case the focus does go to the called window and the MDI Tab
becomes "Active". However when you exit the form, focus seems to stick with the Window that has the toolbox attrib. At
least until you specifically click on another MDI Child window. (This is the same behavior as C6.)

b) If you Click the MDI Tab it gives the "illusion" that this window now has focus however it cannot.
Рай совершает ошибки ничуть не реже чем ад. Просто у него хорошая пресса
Цезарь
Новичок
Сообщения: 13
Зарегистрирован: 22 Май 2007, 1:56

Сообщение Цезарь »

А где это счастье (С7) можно увидеть (потрогать)?
Аватара пользователя
Дед Пахом
Старичок
Сообщения: 3133
Зарегистрирован: 07 Июль 2005, 16:51
Откуда: Москва, Россия
Благодарил (а): 10 раз
Поблагодарили: 28 раз
Контактная информация:

Сообщение Дед Пахом »

Как где? softvelocity.net, в блогах можно найти и картинки, и целые фильмы, смотри пока не надоест :) А вот трогать не надо!
С уважением, ДП
Цезарь
Новичок
Сообщения: 13
Зарегистрирован: 22 Май 2007, 1:56

Сообщение Цезарь »

Что у всех лицензия есть?
Везде уже обзоры пишут.
32 метра весит.
Что выложить сложно?
Не осталось добрых людей в России?
Аватара пользователя
Admin
Администратор
Сообщения: 3959
Зарегистрирован: 05 Июль 2005, 15:59
Откуда: Хабаровск
Благодарил (а): 25 раз
Поблагодарили: 22 раза
Контактная информация:

Сообщение Admin »

Советую обратиться по адресу rimasn@freemail.lt мылом. Небольшой вклад в зеленых сильно поможет общению и заодно вступишь в xUSSR
В привате можно почитать (нужно) тему:
http://forum.clarionlife.net/viewtopic.php?t=1468
Последний раз редактировалось Admin 07 Сентябрь 2007, 17:38, всего редактировалось 1 раз.
Рай совершает ошибки ничуть не реже чем ад. Просто у него хорошая пресса
Аватара пользователя
Admin
Администратор
Сообщения: 3959
Зарегистрирован: 05 Июль 2005, 15:59
Откуда: Хабаровск
Благодарил (а): 25 раз
Поблагодарили: 22 раза
Контактная информация:

Сообщение Admin »

Цезарь писал(а):Что у всех лицензия есть?
Везде уже обзоры пишут.
32 метра весит.
Что выложить сложно?
Не осталось добрых людей в России?
Дружище! Я могу выложить! Но это будет некрасиво по отношению ко многим пользователям данного форма которые внесли посильный вклад ($) в дело покупки С7
Лучше думаю дальнейшие разговоры перенести в Приват!
Насколько я вижу доступ туда у тебя есть...
Рай совершает ошибки ничуть не реже чем ад. Просто у него хорошая пресса
Аватара пользователя
Admin
Администратор
Сообщения: 3959
Зарегистрирован: 05 Июль 2005, 15:59
Откуда: Хабаровск
Благодарил (а): 25 раз
Поблагодарили: 22 раза
Контактная информация:

Сообщение Admin »

Как впечатления от Clarion 7 ?
Рай совершает ошибки ничуть не реже чем ад. Просто у него хорошая пресса
Аватара пользователя
Дед Пахом
Старичок
Сообщения: 3133
Зарегистрирован: 07 Июль 2005, 16:51
Откуда: Москва, Россия
Благодарил (а): 10 раз
Поблагодарили: 28 раз
Контактная информация:

Сообщение Дед Пахом »

Как впечатления от Clarion 7 ?
Русские тексты превращает в кракозябры, так что пока от 7-ки никакой пользы, кроме вреда
С уважением, ДП
Аватара пользователя
Игорь Столяров
Ветеран движения
Сообщения: 7373
Зарегистрирован: 07 Июль 2005, 10:19
Откуда: г. Ростов-на-ДоМу
Благодарил (а): 13 раз
Поблагодарили: 48 раз

Сообщение Игорь Столяров »

1. Придется покупать новый монитор, блин ....
2. Жаль, что нас (Россию) в списке локализаций не упомянули.
3. Красота бесплатной не бывает (среда медленней C6).
4. И это все, что с такой помпой делалалось SV 3 года ?!

Вот, такие первые впечатления .... ;) Смотрим дальше ....
Аватара пользователя
ShilakAV
Бывалый
Сообщения: 55
Зарегистрирован: 25 Декабрь 2005, 9:55
Откуда: Амурская область
Благодарил (а): 1 раз

Сообщение ShilakAV »

Редактор текста вроде неплохой...
Amike34
Бывалый
Сообщения: 51
Зарегистрирован: 03 Август 2005, 19:06
Откуда: г. Чебоксары

Сообщение Amike34 »

Дед Пахом писал(а):
Как впечатления от Clarion 7 ?
Русские тексты превращает в кракозябры, так что пока от 7-ки никакой пользы, кроме вреда
попробовал в борьбе с этим:
в настройках :
Tools->Options->Text Editor -> Сhoose encoding
переключить на OEM Cyrillic или System Default(Cyrillic(Windows))
и
в самом .CLW правая кнопка мыши FILE OPTIONS тоже самое.
Вроде кракозябры правятся. Проверьте, пожалуйста.

С уважением.
Аватара пользователя
ShilakAV
Бывалый
Сообщения: 55
Зарегистрирован: 25 Декабрь 2005, 9:55
Откуда: Амурская область
Благодарил (а): 1 раз

Сообщение ShilakAV »

Зато в дизайнере окна буква "я" нормально выглядит, а не как <255>.
Надо ее только перенабрать, иначе кракозябра получается. А редактор текста нормально настраивается на русский.
DarkGreg
Новичок
Сообщения: 16
Зарегистрирован: 24 Ноябрь 2005, 17:47
Откуда: Москва
Контактная информация:

Сообщение DarkGreg »

А с крозебяками в POPUPе при русской строке кто-нибудь справился?
Ответить