Zh GoogleMap, new version

Extensions
Hi. Today I've changed code in plugin for supporting all features of component. Now Places Library and Panoramio Library works in plugin. And you can set placemark by text address (not only by lat|lng). But code seriously changed, therefore if you get an error or features not working like it was yesterday - please contact me immediatly. And I've revised code in component alittle. Thanks, Dmitry    
Read More

Zh YandexMap component and plugin – fixed bugs

Extensions
Всем привет. При подготовке демосайта нашел пару ошибок - не учитывал карту при управлении маркерами через список групп. А также статус самой группы. В плагине при вызове карты с определенным маркером могла быть ошибка отсутствия свойства id (при последнем изменении я про второй вариант вызовы забыл).
Read More

Zh GoogleMap, you can use Panoramio Library

Extensions
Hi. New feature added - using Panoramio library. Go to "Panoramio Library" slider on map tab. Set enable by Enable using Panoramio = Yes You can add filter control to map, and it's position. And you can specify preset restriction on data by settin "Panoramio Tag" or|and "Panoramio UserID" tag - A panoramio tag used to filter the photos which are displayed. Only photos which have been tagged with the supplied string will be shown. userId - A Panoramio user ID. If provided, only photos by this user will be displayed on the map. If both a tag and user ID are provided, the tag will take precedence.
Read More

Zh Google Map, you can create marker by specify it’s address

Extensions
Hi. New release. Changes (1.4.2 - 2.0.1) * now you can create marker by specify it's address - new field(using geocoding). * fixed bugs with tooltip of markers in front- and backend. You can remember, than geocoding consume time (if you have lot's of markers). In backend (admin), you can find your place by autocomplete field. I added new filed for text address, and lat and lng is not required now. If you specify address and save (lat lng is empty), marker change position to new, and if you move it by mouse - lat and lng is filled. If you specify lat and lng - I use it. If you specify address and NOT specify lat lng - I use it. In all other cases I ignore marker. I've…
Read More

Печать MS Word документа из командной строки

Developer 6i
Обычно для пользователя при формировании различного рода документов в формате MS Word формировались файлы и просто открывались. Для этого вызывалась процедура host и передавалась строчка запуска. Например, фрагмент кода cmd  := 'cmd /c start winword.exe "'||pi_fname||'"'; host(cmd); Однако возникла задачка массовой печати. Т.е. есть подготовленные файлы, и их надо, например, при нажатии на кнопку распечатать на принтере. Естественно, пользователь не должен открывать, печатать, закрывать каждый документ. В итоге вызов видоизменился до следующего cmd  := 'cmd /c start /wait winword.exe "'||pi_fname||'" /q /n /mFilePrintDefault /mFileSave /mFileExit'; host(cmd); Что добавилось start /wait - дает нам возможность запустить приложение и ждать его завершения. В нашем случае мы должны в определенном порядке получать на принтере документы, т.е. они должны и попадать в очередь последовательно, а без ожидания маленькие документы могут встать в очередь быстрее…
Read More