Search results for query: *

  1. D

    WMI Printer Status never changing

    Oddly there is nothing reported on Availability. By the way the app is cool there does seem to be a problem though in picture you see properties with arrays and datatypes are not listed? see image below for exact phrase
  2. D

    WMI Printer Status never changing

    John all printerstaus = 3 (idle) on or off This is not a network printer even looked at the extended status with that being said is there any try catch statements I could use if the printer errors out for any reason?
  3. D

    WMI Printer Status never changing

    I am trying to use WMI to get the printers status using the following code. I have researched WMI for the answer but cant find a solution the ultimate goal here is to find out if the printer is online and ready to print. I also have tried the printDocument.PrinterSettings.IsValid but it always...
  4. D

    Write To Registry appears succesful But it relly isnt written

    I recommend removing this after I entered it manual the computer would on boot to the file explorer. I don't recommend any one trying this although it would have been nice to understand why it appeared to work but didn't I am know in the process of resetting the the tablet and wont try that again.
  5. D

    Write To Registry appears succesful But it relly isnt written

    I am trying to write to the windows 8 registry using the following code it appears to have written but looking at reg edit it hasn't changed and it doesn't do what it is intended to. In windows 8 if you change the Shell Key from explorer to select,explorer the windows is supposed to boot into...
  6. D

    Answered Minimize WCF Console On Start Up

    The following code does minimize as expected while in Visual Studio how ever after compiling and running the complied code from desktop it does not. Any thoughts of why Imports System.ComponentModel Imports System.Net Imports System.Runtime.InteropServices Imports System.ServiceModel Imports...
  7. D

    WCF Application Starting Server

    Did some searching and found that if I added a app.manifest file and changed the following code forced me to run visual studio as administrator which stopped it during debugging only. But that didn't quite solve the actual problem. <!-- UAC Manifest Options If you want to change...
  8. D

    WCF Application Starting Server

    Hi all I have downloaded this code from here http://www.vbdotnetforums.com/windows-communication-foundation-wcf/63703-wcf-service-library-self-hosted-console-server-test-client.html#post178828 I am using it pass a screen shot from an external screen got it all set works great. However I compile...
  9. D

    Tip WCF service library in self-hosted console server, and test client

    Sorry having a senior moment lol. I was trying to run the same app twice of course the file was in use. The end result was editing the app config file as stated above.
  10. D

    Tip WCF service library in self-hosted console server, and test client

    Hi John so I decided that WCF may be better it works great when both are on the localhost however I want to run the server from the server and the clients from various lan IP address's So I changed the server Line to http://192.168.254.1:8080/hello the console starts ok. But cant seem to figure...
  11. D

    Help View Screen, Control Mouse & Keyboard in .Net Remoting

    Thanks John I didn't realize the thread was so old. I did add a screen capture class to your file which did a nice job of getting the external display. Don't want to rewrite the book. I was trying to use vcnsharp but some suggested using remoting so that's how I found this. PS your still Da...
  12. D

    Help View Screen, Control Mouse & Keyboard in .Net Remoting

    Hi John Been a long time. I looked at your sample code I am designing a program that will remote to my server(LAN) get an image of the external display and return it to the client. can your code be modified to do that I want to add a time to send the updated image like a RDC viewer. Thanks Dwain
  13. D

    Displaying forms automatically on different monitors

    I have tried dim f as new form f = frmdisplay and show f on the pc screen but couldn't get it to work i assume that is what you are referring to am I missing something here?
  14. D

    Displaying forms automatically on different monitors

    Hi John similar problem I have a need to display the same form on 2 screens my codeworks except the form on the pc is shown only in the task bar only I cant physically view t even if I click on it. <code> PublicSub ShowOnBothScreens() Try Dim sc() AsScreen sc = Screen.AllScreens...
Back
Top