Thanks chaps,
FWIW I have already tried manually setting GPOs via a side-loaded GPEdit but they seem to be used by Windows either.
I have managed to get some of the Policies to activate by writing to the registry so I'm currently working down that path but it is rather annoying having to go...
Hi everyone,
I've run into an issue that I cannot explain and I'm hoping someone out there will have some experience of this, as Google has nothing to offer !
We are a Workgroup and currently deploy machine level GPOs via LocalPol.exe for Chrome. The Chrome GPO works flawlessly across our...
Solved this !
It was painfully obvious but also annoyingly subtle.
The problem was in my static properties that returned the RoutedUICommands. The code was always creating a new instance of the RoutedUICommand, so the command referenced by the Window and the one referenced by the MenuItem were...
Hi all,
I couldn't find a WPF / XAML forum so I am hoping that either someone here will have some ideas or point me in the direction of the right forum to use !
I have created my own RoutedUICommands that I am binding to MenuItems. The problem is that once the Command are bound to their...
The wildcard character's depend upon the DBMS you're connecting to. If you're using Access I believe the character you're after is %:
Select * from V_SOAPostCodeSearch where PCID Like 's183d%'
edit:
Please ignore the two comment lines:
"'Leave this line in to leak"
and
"'Unrem this to stop leaking"
I was originally going to post sample code that did the whole thing in the Form_Load but then decided that use of buttons was easier.
...perhaps we need a "make sure comments are up to...
Having reread my post and Bob's interpretation I am not so sure that what I was trying to say has come across correctly. Regardless I have created a demo of what I was trying to get at.
Create a new ActiveX EXE project called "MemLeakDemo".
Rename Class1 to "SomeIface" and ensure it is...
@ Bob, if I'm not too busy tomorrow I'll throw an example together. I've caught myself out enough times that it shouldn't take too long to replicate :s
I have to say that I have one issue with the use of:
With CreateObject("SomeApp.object")
'the code
End with
In doing so you're creating a...
Our coding standards dictate that every instantiated object should be manually destroyed.
The main reason behind this is that it is all too easy to instantiate an object that uses an internal timer to run pseudo multi-threaded. Non-destruction of a single pointer can leave the object in memory...
I had a similar permissions problem recently. I spent hours using various tools to identify all of the resources used by my application. So to try and save you the pain, take a look at the following page. Obviously not all of the components/files will be on your PC as quite a few of them are...
Replace doesn't accept wildcards.
I suspect you'll either need to look at Regex or writing a little parsing routine that utilises the instr() and mid$() functions.
I have the same thing Bob but then I think it would only be a problem if I had post-10 cups of coffee shakes when selecting the object to reference in the first place.
strongm, fantastic little snippet of knowledge this. I had no idea you could do this and I love the support for "withevents"...
Right, got this sorted :)
It was a mixture of poor Windows Update timing and poor design from me :/
First of all a recent MSUpdate rolled out a new version of the common dialog that does not appear to be compatible with VB6. I did write down the name (and version) of the file but I have since...
Ok,
Changing to a thread pool model made no difference to the problem but it was worth a shot !
I have partially sorted the problem out, in as much as I have raised the number of instance before the problem takes hold by reinstalling VS SP6. I am in the process of building a completely fresh...
Hi all,
Ok, first off all I need to clarify that this has been working fine for a few years, the problem appears to be with the work load and not with the code...
I have a standard .exe application that utilises an ActiveX EXE server. The application is used to ping various resources and...
I've had a play and its not a bad solution at all. My only reservation is having to rely on a third party solution for establishing and maintaining the tunnel; I'd prefer to have that all in the app.
Hi all,
Lucky old me has been tasked with suring up an existing TCP based Client/Server application so that it can be used across the WWW.
The application was initially used to move sensitive data (in real-time*) between applications on the same LAN. The business has now grown and the...
I use GUIDs for items in collections when the contents of the collection may be persisted or transfered to another process.
In my instance, the use of a GUID (pretty much) ensures that I have a uniquie id for an item and I can be (fairly) sure that I willnot have any collsion issues if that...
Sorry, I typed the wrong mode:
OPEN <path to file> FOR RANDOM LOCK WRITE AS <file handle>
Output is sequential
Random is, well, random. You can freely move around the contents of the file.
You might want to check this primer:
http://www.powerbasic.com/support/help/pbcc/open_statement.htm
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.