This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
166
Web Server - Ask For Help / Re: NT7.34 Locator Field now Above and Below Browse
« on: February 06, 2014, 06:18:19 AM »
Just for information
I had the same problem with the Locator Top and Bottom using NT7.34.
Did as Bruce suggested - Set Default Sort Order.
Also changed Locator Type from 'Position' to 'Start With'
All is OK now. Locator works great and appear at the Top as Set.
Cheers
Vince
I had the same problem with the Locator Top and Bottom using NT7.34.
Did as Bruce suggested - Set Default Sort Order.
Also changed Locator Type from 'Position' to 'Start With'
All is OK now. Locator works great and appear at the Top as Set.
Cheers
Vince
167
Web Server - Ask For Help / Re: NT7.27 EIP not working
« on: October 21, 2013, 06:47:37 AM »
Hi Bruce.
Found the issue.
Under Webserver extension defaults setting DoubleClick Row To Form. If I untick this option then I get an error when using EIP.
Cheers
Vinnie
Found the issue.
Under Webserver extension defaults setting DoubleClick Row To Form. If I untick this option then I get an error when using EIP.
Cheers
Vinnie
168
Web Server - Ask For Help / NT7.27 EIP not working
« on: October 21, 2013, 12:11:34 AM »
I have just updated to NT7.27 from NT7.25
After a recompile of my app EIP is not working. I have a qty box in a drop down. When I select new value I get an error
record not available (33)
Using Clarion6 and using Clarion8
Just upgraded to Clarion8. Is there any way to get NT7.25 for clarion8 so I can test. I have NT7.25 for Clarion6 but I have just received Clarion8.
Cheers
Vince.
After a recompile of my app EIP is not working. I have a qty box in a drop down. When I select new value I get an error
record not available (33)
Using Clarion6 and using Clarion8
Just upgraded to Clarion8. Is there any way to get NT7.25 for clarion8 so I can test. I have NT7.25 for Clarion6 but I have just received Clarion8.
Cheers
Vince.
169
Web Server - Share Knowledge / Re: NT MutliSite
« on: August 26, 2013, 08:57:29 AM »
Thanks Bruce
Added '\web' to the web folder location
Cheers
Added '\web' to the web folder location
Cheers
170
Web Server - Share Knowledge / NT MutliSite
« on: August 26, 2013, 03:13:27 AM »
Using Clarion6 and NT7.20
Just trying to set up Mutlisite.
Dll seems to be working but I am getting an error with Java Site
'error is site java script'
Can anyone help with this
Thanks
Vinnie
Just trying to set up Mutlisite.
Dll seems to be working but I am getting an error with Java Site
'error is site java script'
Can anyone help with this
Thanks
Vinnie
171
Chat - Ask For Help / Re: Create PDF file on Windows 7
« on: February 07, 2013, 04:49:23 AM »
Thanks Robert for you time.
Looks like it is my Windows 7 installation. I have now tried on another system and it works OK.
Thanks anyway.
Cheers
Vinnie
Looks like it is my Windows 7 installation. I have now tried on another system and it works OK.
Thanks anyway.
Cheers
Vinnie
172
Chat - Ask For Help / Re: Create PDF file on Windows 7
« on: February 06, 2013, 05:12:27 AM »
Thanks Kevin.
Yes default printer installed.
Yes running from desktop (as administrator)
Security setting OK. Server creates reports folder if I delete it. Also tried copying folder from XP machine
This used to work before version NT7.
Cheers
Yes default printer installed.
Yes running from desktop (as administrator)
Security setting OK. Server creates reports folder if I delete it. Also tried copying folder from XP machine
This used to work before version NT7.
Cheers
173
Chat - Ask For Help / Create PDF file on Windows 7
« on: February 06, 2013, 03:47:54 AM »
I am sure this came up last month but I am able to find the answer.
I am using NT7.05.
When I try to create PDF file I get "The Print procedure failed to create the PDF file [X:\Test Version\web\reports\$$$09205.pdf]"
PDF has been working for a couple of years and works OK if I run on Windows XP.
\web\reports is available also I am running web server as administrator.
I am using Clarion 6.3 with NT7.05 PDF generator from Softvelocity.
Cheers
Vinnie
I am using NT7.05.
When I try to create PDF file I get "The Print procedure failed to create the PDF file [X:\Test Version\web\reports\$$$09205.pdf]"
PDF has been working for a couple of years and works OK if I run on Windows XP.
\web\reports is available also I am running web server as administrator.
I am using Clarion 6.3 with NT7.05 PDF generator from Softvelocity.
Cheers
Vinnie
174
Web Server - Ask For Help / Re: NT 6 to NT 7 Browse-Form-Field Lookup button
« on: December 19, 2012, 02:39:20 AM »
Hi Jeff.
I will try to explain.
Leave your lookup as it was in NT6
Add the Default Sort to the lookup browse procedure as Bruce wrote earlier.
Then view the lookup browse procedure source and search for Procedurename_sort eg(Lookup_Dealer_Sort) where Lookup_Dealer is my procedure.
This will have a ',number' after the procedure name_sort
You can now add and embed to your Lookup browse procedure in my case (Lookup_Dealer)
Embeds
Before Browse Lookup
After Setting Browse Behaviour Settings
Add this as source
Loc:LocateField = 'NST:SearchCat20' ! (NST:SearchCat20 = your default sort)
loc:sortheader = NST:SearchCat20
loc:vorder = '+NST:SearchCat20'
loc:vordernumber = '9' ! ('9' is the number from earlier)
p_web.SetValue('Lookup_Dealer_sort','9') ! (Lookup_Dealer = your procedure name and '9' is the number from earlier)
I suspect there is a much better way to make this work but it works for me as a workaround until Bruce sorts this correctly.
Cheers
Vince
I will try to explain.
Leave your lookup as it was in NT6
Add the Default Sort to the lookup browse procedure as Bruce wrote earlier.
Then view the lookup browse procedure source and search for Procedurename_sort eg(Lookup_Dealer_Sort) where Lookup_Dealer is my procedure.
This will have a ',number' after the procedure name_sort
You can now add and embed to your Lookup browse procedure in my case (Lookup_Dealer)
Embeds
Before Browse Lookup
After Setting Browse Behaviour Settings
Add this as source
Loc:LocateField = 'NST:SearchCat20' ! (NST:SearchCat20 = your default sort)
loc:sortheader = NST:SearchCat20
loc:vorder = '+NST:SearchCat20'
loc:vordernumber = '9' ! ('9' is the number from earlier)
p_web.SetValue('Lookup_Dealer_sort','9') ! (Lookup_Dealer = your procedure name and '9' is the number from earlier)
I suspect there is a much better way to make this work but it works for me as a workaround until Bruce sorts this correctly.
Cheers
Vince
175
Web Server - Ask For Help / Re: NT 6 to NT 7 Browse-Form-Field Lookup button
« on: December 18, 2012, 07:24:24 AM »
Same result for me even with default sort entered.
Work around I add to
%AfterSettingFlavor
Loc:LocateField = 'NST:SearchCat20'
loc:sortheader = NST:SearchCat20
loc:vorder = '+NST:SearchCat20'
loc:vordernumber = '9'
p_web.SetValue('Lookup_Dealer_sort','13')
Hope this is some help
Work around I add to
%AfterSettingFlavor
Loc:LocateField = 'NST:SearchCat20'
loc:sortheader = NST:SearchCat20
loc:vorder = '+NST:SearchCat20'
loc:vordernumber = '9'
p_web.SetValue('Lookup_Dealer_sort','13')
Hope this is some help
176
Web Server - Ask For Help / Re: Excel document on fileserver
« on: December 04, 2012, 07:04:45 AM »
I also had a problem like this on Windows 7 pc the other day. It turned out that the '.xls' extension was missing in my SendTo_Window extension - Output Setup Tab. Word and HTML and PDF all worked OK.
Hope this helps
Vince
Hope this helps
Vince
177
Web Server - Ask For Help / Re: Filtered browse does not refresh after change (bug?)
« on: October 19, 2012, 07:35:40 AM »
Hi Peter
I think this is the same problem I have. Since version NT6.34 browse does not refresh correctly. I managed to get round this by changing then browse loading method to FILE from PAGE.
I also have the problem when load method is PAGE when the browse refreshes even when pressing F5 key the Record Pointer does not go to the FIRST record.
Don't think this is any help
Cheers
Vinnie
I think this is the same problem I have. Since version NT6.34 browse does not refresh correctly. I managed to get round this by changing then browse loading method to FILE from PAGE.
I also have the problem when load method is PAGE when the browse refreshes even when pressing F5 key the Record Pointer does not go to the FIRST record.
Don't think this is any help
Cheers
Vinnie
178
Web Server - Ask For Help / Re: Mobile mode problem in 6.40 - can't login
« on: August 23, 2012, 01:39:15 AM »
Hi Peter
I am using Clarion 6.3 and NT6.40
I am able to login to my web server app OK using Iphone and Sony phone.
Not sure if this helps.
Cheers
Vince
I am using Clarion 6.3 and NT6.40
I am able to login to my web server app OK using Iphone and Sony phone.
Not sure if this helps.
Cheers
Vince
179
Web Server - Ask For Help / Refresh Browse
« on: August 11, 2012, 12:46:15 PM »
Since version 6.34 I have a problem with refresh browse. If I use Loading Method 'Page' and reset the browse the position seems to alter. Version 6.33 is OK but after this version table position seems to alter.
I tested example DropFilter(33). After changing AliasBrowseControl Loading Method from file to page load two rows. Added a few test records and when clicking on the Aliases Menu option The table position alters.
I tested example DropFilter(33). After changing AliasBrowseControl Loading Method from file to page load two rows. Added a few test records and when clicking on the Aliases Menu option The table position alters.
180
Web Server - Ask For Help / Re: Text box display problem.
« on: July 08, 2010, 09:21:38 AM »
Thanks for all your effects.
Sorry I have not been any help but busy all day. You managed to fix the problem before I had a chance to upload app.
No rush so happy to wait for pr26
Cheers
Vinnie
Sorry I have not been any help but busy all day. You managed to fix the problem before I had a chance to upload app.
No rush so happy to wait for pr26
Cheers
Vinnie