go to post Marco Blom · Nov 16, 2017 Thanks, sorry I did not mention, I have looked into that file but it does not give me a clue how to solve: *** Recovery started at Thu Nov 16 19:23:55 2017 Current default directory: c:\intersystems\cache\mgr Log file directory: .\ WIJ file spec: c:\intersystems\cache\mgr\CACHE.WIJRecovering local (c:\intersystems\cache\mgr\CACHE.WIJ) image journal file...Starting WIJ recovery for 'c:\intersystems\cache\mgr\CACHE.WIJ'.WIJ file not found.Exiting with status 3 (Success)11/16/17-19:24:05:505 (9024) 2 cache.ids file was created by node 139407LINOLP, and this machine is W1064PRO151111/16/17-19:24:11:537 ( 8496) 3 cctrl.dll (error during startup):(289) Opstarten cache mislukt: besturingsproces van cache is abnormaal beëindigd (afsluitcode = 0).
go to post Marco Blom · Jul 8, 2017 Hi Vitaliy,Thanks for you're response and code sample!However I still have the behavior.Could I be the issue that I am using a datacontroller / datamodel?I am interested in the solution for reason that I do use a lot of similar forms.see code:Could the issue be something with the dataBinding?Sorry I do not know how to present the sample code as you do!
go to post Marco Blom · May 13, 2017 I would like to return a "No Data message" but why does the write statement not work?,while the documentation is full of examples with the statement in it?
go to post Marco Blom · Mar 25, 2017 This was the code snippet I have used: I am now looking how the get a "No data returned" message into my Form
go to post Marco Blom · Mar 25, 2017 Thank you Eduard!Now it works. This is the code:My only comment is that the -not working- code a (100%) sample is from the documentation, which makes it sometimes confusing...Thanks.
go to post Marco Blom · Feb 28, 2017 Hi Stephen and Timothy, Real nice feature, but how does it work when the datasource of the tablepane is a query instead of the table?Adding the TotalMatrix (Transient) property to the query resulted in an Error:Suggestions appreciated!
go to post Marco Blom · Nov 25, 2016 Thanks Michael and Stephen for you're response:I am using 2016.2.0 windows x86-64I did try to 'simplify ' and exclude fields in the sql statement without results: this is the sql statement:Maybe accessing the data with objectscript instead of sql is an alternative to retrieve the data?My goal is to examine what went wrong to prevent loosing lots of data in future.Thanks,
go to post Marco Blom · Oct 7, 2016 I have tested the code above with a txt file with 3868 lines:the file looks like this:this is my code:The result is only 12 lines, While line length tells the length of a line is 9??? I do not understand this.Any suggestions or help please, Thanks in advance!
go to post Marco Blom · Oct 4, 2016 I have tested the example with the following as result: result/output:What did I do wrong (I have downloaded the samplecode from Github, so no typing errors)
go to post Marco Blom · Aug 29, 2016 Hi,did you take a look at http://localhost:57772/csp/docbook/DocBook.UI.Page.cls?KEY=GZEN_layout#G...Or is that answer to simple?I find it very useful.
go to post Marco Blom · Aug 29, 2016 Hi, I am building an Email client in Cache, and succeeded to send out emails (smpt)On downloading emails I have tested the pop3 sample from the InterSystems documentation: ClassMethod YPOPsAsPOP3() As %Net.POP3{ //Sample from InterSystems Set server=##class(%Net.POP3).%New() //YPOPs uses the default port //but let's set it anyway Set server.port=110 //just in case we plan to fetch any messages //that have attachments //Set server.StoreAttachToFile=1 //Set server.StoreInlineToFile=1 //Set server.AttachDir="c:\DOWNLOADS\" //local host acts as the server Set servername="mail.xxxxxxxx.nl" //YPOPs works with a Yahoo email account Set user="marco@xxxx.nl" Set pass="XXXXXXXX" Set status=server.Connect(servername,user,pass) If $$$ISERR(status) { Do $System.Status.DisplayError(status) Quit $$$ERROR() } Do ##class(ZenMail.MailFunctions).ShowMailbox(server) Do ##class(ZenMail.MailFunctions).FetchMailbox(server) Do ##class(ZenMail.MailFunctions).ShowMsgInfo(1) Quit server}I succeed to get information out of my mailbox however with the following error(s):and at the end:has anybody an idea how to solve this? for me this error is a bit a flurry....I would like to invite people to work on a working example with complete working code base rather than open answerswhich do not contribute to a completed working topic.Thanks in advance!
go to post Marco Blom · Jun 2, 2016 Hi Timothy,Thanks for this, works great!However it brings me to another issue:My dataset contains more rows than pagesize * number of paging buttons(5)the no. of paging buttons seems to be fixed. Do you know if there is a method to change the number of paging buttons?Thanks