ass17
Members-
Posts
2,201 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by ass17
-
Hi, I can't do it with the basic tools I have and to get page breaks would require commercial paid tools. What interests me more is why number of pages visually is important?? I can't see why and which exam board would set an exam with specific page numbers. I would say the page width is more important.. [emoji1]
-
Below is a download link below: https://drive.google.com/open?id=0B2Rz5d6Ck6CCRjc5OFdzNnNGTzQ Fixes/Changes Fix - When opening multiple saved documents it appended the existing text instead of clearing it out first. Feature - Added the ability to display the text area in an A4 page width or full screen width. The option have been added to 'Screen Options' menu item and a config option 'StartPageWidth' to use as default on startup. 0 = Full screen page width or 1 = A4 page width. MERRY CHRISTMAS!!
-
Ok so I have sorted out all the issues in the previous post and I will release v2.0.7.0 on Tuesday 3rd Jan (might be before that if Im bored :-) ), Have a great Christmas everyone!!
-
This must be a bug as it should clear the previous text. I'll make the necessary adjustments tomorrow. I have thought about this but not sure what the best approach is because I have to contend with different screen widths. I think what I will do is base it on a specific visual page size option, A4 and/or Letter. Get the size of an A4 price of paper convert it to pixels based on a specific DPI like 72 which would give a page width of 595pixels. But the problem lies with actual screen widths of 1980 where the page would only appear a quarter width. I know with the rich text box I use I definitely cannot do page breaks with each page visually separated. But I'm sure people are not bothered so much by page heights but more so widths. I'll see what I can do over the festive period whilst entertaining a wife and two kids [emoji1]
-
It seems like we will go down the unicast DNS route rather than extenders on each subnet, just seems over kill to me. One I have it working on one subnet I can follow the same pointers to apply it to other subnets. I'll see how I go with it, Lanny @ Collobos seems to be very prompt with my email replies so I'm sure between us all I'll get it up and running soon [emoji1][emoji106]🏻
-
Thanks, yes we allow three vlan'd wifi networks to print via AirPrint using version 1.6, we also have Papercut running on our print-svr, will it still work do you know?
-
Ok great, few questions. Can we advertise specific printers on different subjects? Or if not authenticate then against AD group memberships. Need to lock down pupils to certain printers and staff get all. Also we use s bonjour gateway to advertise PCs running AirServer over airplay, can presto do the same job?
-
Hi, Has anyone setup presto server 2 yet? Reason I ask is because is a lot more complex than version 1. It seems to now almost like a bonjour gateway system that always advertisement of airplay and AirPrint services over multiple subjects/VLANs. Can anyone confirm this and have you set it up yet? Any advice what you have done would be great, Thanks.
-
Ok great thanks, and is your DMARC policy in None (Monitor) or reject or quarantine mode?
-
Hi all, We are thinking to introduce DMARC to stop email spoofing etc... Do you have it setup and what are the pros/cons of DMARC for you so far? Any help making a decision would be greatful! Thanks[emoji106]🏻
-
Now fixed in Build 2.0.6.6 is page numbering on multiple prints within the same session. https://drive.google.com/open?id=0B2Rz5d6Ck6CCaFpZWGpoR1BkRUU Also fixed is when you restore a previous version the cursor sets to the end of the text.
-
the main part of the software is .net framework code so would port over using something like Mono, but the DLL library for the richedit box might be more tricky. I can investigate for future builds but for the time being why not try PortingKit? its free.... Porting Kit | Download
-
Ok thanks for that I will take a look at the code and based on what you have said, I'm pretty sure I have forgot to reset the page number count at the end of the print function.
-
Also note that the user accounts you are logging in with also need write access to the folders they are writing to (saves and backups). The defaults are desktop for saves and programdata for backups. I have just tested v2.0.6.5 and I could not get it to fails using the defaults saving and restoring was as expected.
-
In your config file what are you save path and backup paths? If so copy/paste your config file so I can test it asap. Can you replicate this problem, if so can you describe step by step so I can trace and correct any errors Thanks
-
Download Now! https://drive.google.com/open?id=0B2Rz5d6Ck6CCUlBDNFhwOUpUMXM version 2.0.6.5 Fixed - Upon restoring a previous version that is suppose to be double line spaced always returned it to single, now it returns the correct line spacing and cursor position. Removed - Close button on Cadidate Info Screen when option to display Candidate Info screen on startup is enabled, This is to force the end user to fill in all details before continuing. Fixed - Document writing window was enabled if the display Candidate Info screen on startup is enabled, now disabled until the candidate info window has been completed with all relevent information submitted. Fixed - If Menu Toolstrip is disadbled the document writing window appears 20 pixels lower thus looking odd. Added - 4 pixel padding to the main window so that the objects inside it (menu bar, toolstrip, document writing window, statusbar) will be more visible.
-
Version 2.0.6.1 out tomorrow folks, change log to follow.... [emoji106]🏻
-
Here is my final example using Google Chrome set WshShell = WScript.CreateObject("WScript.Shell") strDesktop=WshShell.SpecialFolders("Desktop") set oShellLink=WshShell.CreateShortcut(strDesktop & "\Google Chrome.lnk") pfiles = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES%" ) pfiles86 = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES(x86)%") Set fso = CreateObject("Scripting.FileSystemObject") If fso.FileExists(pfiles & "\Google\Chrome\Application\chrome.exe") Then oShellLink.TargetPath = pfiles & "\Google\Chrome\Application\chrome.exe" oShellLink.WindowStyle = 1 oShellLink.IconLocation = pfiles & "\Google\Chrome\Application\chrome.exe, 0" oShellLink.Description = "Google Chrome" oShellLink.WorkingDirectory = pfiles & "\Google\Chrome\Application" oShellLink.Save ElseIf fso.FileExists(pfiles86 & "\Google\Chrome\Application\chrome.exe") Then oShellLink.TargetPath = pfiles86 & "\Google\Chrome\Application\chrome.exe" oShellLink.WindowStyle = 1 oShellLink.IconLocation = pfiles86 & "\Google\Chrome\Application\chrome.exe, 0" oShellLink.Description = "Google Chrome" oShellLink.WorkingDirectory = pfiles86 & "\Google\Chrome\Application" oShellLink.Save End If
-
Your welcome [emoji106]🏻
-
You kinda partially answered your own question by quoting the path "Program Files (x86)". So based on that you could run a check to see if the main EXE exists in a specific path using the environment variables below: Set wshShell = CreateObject("WScript.Shell") pfiles = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES%") pfiles86 = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES(x86)%") So you in essence you would say: Set wshShell = CreateObject("WScript.Shell") pfiles = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES%") pfiles86 = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES(x86)%") Set fso = CreateObject("Scripting.FileSystemObject") If fso.FileExists(pfiles & "\Hyperspheric Solutions Ltd\GO Login Tool v2\Go.Login.exe"") Then 'Do Something ElseIf fso.FileExists(pfiles86 & "\Hyperspheric Solutions Ltd\GO Login Tool v2\Go.Login.exe"") Then 'Do Something End If
-
You kinda partially answered your own question by quoting the path "Program Files (x86)". So based on that you could run a check to see if the main EXE exists in a specific path using the environment variables below: Set wshShell = CreateObject("WScript.Shell") pfiles = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES%") pfiles86 = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES(x86)%") So you in essence you would say: Set wshShell = CreateObject("WScript.Shell") pfiles = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES%") pfiles86 = wshShell.ExpandEnvironmentStrings("%PROGRAMFILES(x86)%") Set fso = CreateObject("Scripting.FileSystemObject") If fso.FileExists(pfiles & "\Hyperspheric Solutions Ltd\GO Login Tool v2\Go.Login.exe"") Then 'Do Something ElseIf fso.FileExists(pfiles86 & "\Hyperspheric Solutions Ltd\GO Login Tool v2\Go.Login.exe"") Then 'Do Something End If
-
Please try the new version for me if you can. Then I can work off the complied code easier :-)
-
Can you replicate the error and provide me with step by step info? As I cant get any version to fail. Thanks
-
In response to the last few posts below is version 2.0.6.0 https://drive.google.com/file/d/0B2Rz5d6Ck6CCTGFZaU1VMjZwRzQ/view?usp=sharing Changelog Error checking has been added for loading older versions of saved files. The software should not now complain. Re-designed Candidate Information screen to separated out the Exam details into three separate entities. They are “Board”, “Subject” and “Unit Code/Reference”. The Exam Board entry box now has an autosuggest/complete list of predefined exam boards. For example, union typing in the first letter, lets says “A” the list would suggest “AQA” to click on and elect. A new config option has been added to go with the Exam Boards Autocomplete List. It will contain the suggested list of examination boards, each board is separated by a semi-colon only. If you decided to blank the list out then the auto complete feature will be disabled and the exam board box will return back to a standard text box entry. If you wish to use, or are using an older config that doesn't included the “ExamBoards” option. This build of ExamWritePad will automatically generate one for you to use. The header/footer now prints out in a dark grey to distinguish itself from the main text on the page. If you are printing on a mono printer then it will look like a lighter shade of black. Fixed an issue when upon selecting a background screen colour, it never remembered what your current selection was.
