Вверх ↑
Этот топик читают: Гость
Ответов: 1731
Рейтинг: 68
#316: 2012-07-08 12:50:27 ЛС | профиль | цитата
Nic, c 64 битной работает ?
------------ Дoбавленo в 12.50:
При установке ошибка:
ercnet1.jpg
При регистрации пакета:
ercnet2.jpg
карма: 1

0
файлы: 2ercnet1.jpg [70KB] [684], ercnet2.jpg [12.9KB] [864]
Главный модератор
Ответов: 2997
Рейтинг: 395
#317: 2012-07-08 13:00:26 ЛС | профиль | цитата
Проверялось на XP SP3, Win 7 64bit и Vista 32bit. UAC - low level.

Читайте readme после установки.
карма: 6
Дорогу осилит идущий. Install/Update HiAsm.NET
0
Ответов: 3889
Рейтинг: 362
#318: 2012-07-08 13:01:01 ЛС | профиль | цитата
Cosinus, запускали под учётной записью, под которой ставился HiAsm? При этом все окна HiAsm были закрыты?
карма: 1

0
Ответов: 1731
Рейтинг: 68
#319: 2012-07-08 13:08:36 ЛС | профиль | цитата
1nd1g0, все ставилось из под админки и все окна были закрыты
карма: 1

0
Главный модератор
Ответов: 2997
Рейтинг: 395
#320: 2012-07-08 13:15:51 ЛС | профиль | цитата
В первом случае что-то с правами доступа - попробуйте отлючить UAC.
Во втором - ошибка обращения к hiasm.db - причина незвестна, но уже озвучивалась nesco.
карма: 6
Дорогу осилит идущий. Install/Update HiAsm.NET
0
Ответов: 1731
Рейтинг: 68
#321: 2012-07-08 13:17:32 ЛС | профиль | цитата
После перезагрузки компьютера и отключением всех ненужных сервисов я все-таки установил.
Но вот Elements.db пришлось в ручную собирать.
карма: 1

0
Ответов: 1841
Рейтинг: 369
#322: 2012-07-08 13:55:00 ЛС | профиль | цитата
С последними ревизиями данного пакета, не могу собрать пустой проект с фреймворком 4.0.30319.1....
Log:
code_28422.txt

Project1.cs
code_28423.txt
В версии фреймворка 3.5, компиляция проходит успешно...
карма: 1
0
файлы: 2code_28422.txt [1.7KB] [362], code_28423.txt [929B] [342]
Ответов: 1173
Рейтинг: 49
#323: 2012-07-08 14:04:38 ЛС | профиль | цитата
CriDos, у меня с .NET FW 4.0.30319 и ревизией пакета 812 всё нормально.
карма: 0

0
Главный модератор
Ответов: 2997
Рейтинг: 395
#324: 2012-07-15 09:11:49 ЛС | профиль | цитата
sqlite_simple_editor.png
sqlite_editor.sha
карма: 6
Дорогу осилит идущий. Install/Update HiAsm.NET
1
файлы: 2sqlite_simple_editor.png [3KB] [772], sqlite_editor.sha [1.6KB] [341]
Голосовали:iarspider
Ответов: 1731
Рейтинг: 68
#325: 2012-08-07 00:42:30 ЛС | профиль | цитата
Я так понимаю Динамические панели еще не сделали ?
карма: 1

0
Главный модератор
Ответов: 2997
Рейтинг: 395
#326: 2012-08-07 02:56:05 ЛС | профиль | цитата
Inline - на все случаи жизни.
карма: 6
Дорогу осилит идущий. Install/Update HiAsm.NET
0
Ответов: 1731
Рейтинг: 68
#327: 2012-08-07 03:00:31 ЛС | профиль | цитата
Nic, массив поможет или можно по другому сделать?

code_28708.txt
карма: 1

0
файлы: 1code_28708.txt [155B] [172]
Главный модератор
Ответов: 2997
Рейтинг: 395
#328: 2012-08-07 11:00:35 ЛС | профиль | цитата
Cosinus, опыт общения людей между собой показал, чтобы получить ответ на вопрос, сам вопрос должен содержать не менее 75% ответа.
карма: 6
Дорогу осилит идущий. Install/Update HiAsm.NET
0
Ответов: 1731
Рейтинг: 68
#329: 2012-08-14 17:34:50 ЛС | профиль | цитата
Делал для себя. Может кому пригодится.
Есть возможность назначить UserAgent.
hiHttp_Get.hws

func init
// add using module
sys.add_use('System.Net')
sys.add_use('System.IO')
sys.add_use('System.Text')

// initialize properties
this.setfield('hr', 'hr' + this.id)
blk_vars.println('private HttpWebRequest ' + this.hr + ';')
this.setfield('resp', 'resp' + this.id)
this.setfield('rd', 'rd' + this.id)
if(linked("ContentLength") and linked("doDownload"))
sys.add_var('cl', 'Int64')
end
if(linked("ContentType") and linked("doDownload"))
sys.add_var('ct', 'string')
end
if(linked("ResponseUri") and linked("doDownload"))
sys.add_var('ru', 'Uri')
end
if(linked("Headers") and linked("doDownload"))
sys.add_var('hs', 'WebHeaderCollection')
end
if(linked("IsFromCache") and linked("doDownload"))
sys.add_var('ifc', 'bool')
end
if(linked("IsMutuallyAuthenticated") and linked("doDownload"))
sys.add_var('ima', 'bool')
end
end

func doDownload(uri, filename)
sys.add_var_loc('result', 2)
blk.println(this.hr, ' = WebRequest.Create(', d("URI"), ') as HttpWebRequest;')
.println(this.hr, '.UserAgent = ', d("UserAgent"), ';')
.println('HttpWebResponse ', this.resp, ' = ', this.hr, '.GetResponse() as HttpWebResponse;')
.println('StreamReader ', this.rd, ' = new StreamReader(', this.resp, '.GetResponseStream(), Encoding.', this.props("Encoding").value,');')
if(linked("ContentLength"))
blk.println(this.cl, ' = ', this.resp, '.ContentLength;')
end
if(linked("ContentType"))
blk.println(this.ct, ' = ', this.resp, '.ContentType;')
end
if(linked("ResponseUri"))
blk.println(this.ru, ' = ', this.resp, '.ResponseUri;')
end
if(linked("Headers"))
blk.println(this.hs, ' = ', this.resp, '.Headers;')
end
if(linked("IsFromCache"))
blk.println(this.ifc, ' = ', this.resp, '.IsFromCache;')
end
if(linked("IsMutuallyAuthenticated"))
blk.println(this.ima, ' = ', this.resp, '.IsMutuallyAuthenticated;')
end
blk.println(this.result, ' = ', this.rd, '.ReadToEnd();')
event("onDownload", this.result)
blk.println(this.rd, '.Close();')
.println(this.resp, '.Close();')
event('onStop')
end

func doStop
blk.println(this.hr, '.Abort();')
end

func ContentLength
return(this.cl)
end

func ContentType
return(this.ct)
end

func ResponseUri
return(this.ru)
end

func Headers
return(this.hs)
end

func IsFromCache
return(this.ifc)
end

func IsMutuallyAuthenticated
return(this.ima)
end
HTTP_Get.ini

[About]
Version=1.1
Author=Dilma & Nic
Mail=support@hiasm.com

[Type]
Class=Element
Info=Makes a request to a Uniform Resource Identifier (URI)
Tab=Internet

[Property]
URI=Sets the URI that identifies the Internet resource|2|
UserAgent=Specify the UserAgent|2|
Encoding=Sets the encoding applied to the contents of the response|14|0|Default,ASCII,BigEndianUnicode,Unicode,UTF32,UTF7,UTF8

[Methods]
doDownload=Starts the request|1|0
doStop=Cancels a request to an Internet resource|1|0
onDownload=Occurs after a successful data download and writes them to the flow|2|0
*onStop=Occurs after finishing the request|2|0
*ContentLength=Returns the content length of data being received|3|1
*ContentType=Returns the content type of the data being received|3|2
*ResponseUri=Returns the URI of the Internet resource that actually responded to the request|3|0
*Headers=Returns a collection of header name-value pairs associated with this request|3|0
*IsFromCache=Returns a Boolean value that indicates whether this response was obtained from the cache|3|0
*IsMutuallyAuthenticated=Returns a Boolean value that indicates whether mutual authentication occurred|3|0
URI=Defines the URI that identifies the Internet resource|4|2
UserAgent=Defines UserAgent|4|2

Первый раз влезаю в дебри RTCG.
карма: 1

0
Главный модератор
Ответов: 2997
Рейтинг: 395
#330: 2012-08-14 22:54:46 ЛС | профиль | цитата
Dilma писал(а):
...Что касается написания элементов под пакеты на базе RTCG, то как уже некогда говорилось, большинство из них можно свести к однотипным шаблонам и обвязать мастерами, которые позволят разработчику создавать новые элементы на уровне Next->Next->Next->Next->Finish. В конце концов будет и инструмент, который по готовому классу (выполненному по определенным соглашениям) соберет такой элемент в полностью автоматическом режиме...

Первый элемент, созданный C#-программой по документации MS, в автоматическом режиме:
http://svn.hiasm.com/packs/CNET/conf/OpenFileDialog.ini
http://svn.hiasm.com/packs/CNET/code/hiOpenFileDialog.hws
openfiledialog.png
карма: 6
Дорогу осилит идущий. Install/Update HiAsm.NET
1
файлы: 1openfiledialog.png [124.8KB] [762]
Голосовали:iarspider
Сообщение
...
Прикрепленные файлы
(файлы не залиты)