![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | Console Window and XmlSchema Good Afternoon: I have two questions I was hoping someone can help me with. 1. I've created a app that creates a xml file; the project was constructed as a console window. I want to know is there anyway to suppress the console window from showing? One of the options is I have is to generate the xml file without showing the console window. Even though I'm not calling the Console it still flashes. Any suggestions. I plan on running this exe as a scheduled task. Is there a better method in doing that; like should it be a library (dll) file? Would a dll run as a scheduled task? 2. The xml file that I'm creating needs a schema. Is there any good information on how to create the schema for such a file? It's a simple xml file with that's in the following format: <main> <record> <name>Joe Smith</name> .... other elements </record> <record>.... </main> -- TC |
My System Specs![]() |
| | #2 (permalink) |
| | Re: Console Window and XmlSchema "Terrance" <Terrance@xxxxxx> wrote in message news:267E91B0-62F8-4B3E-8C24-9CAC831DFBFB@xxxxxx Quote: > Good Afternoon: > > I have two questions I was hoping someone can help me with. > > 1. I've created a app that creates a xml file; the project was constructed > as a console window. I want to know is there anyway to suppress the > console > window from showing? One of the options is I have is to generate the xml > file > without showing the console window. Even though I'm not calling the > Console > it still flashes. Any suggestions. I plan on running this exe as a > scheduled > task. Is there a better method in doing that; like should it be a library > (dll) file? Would a dll run as a scheduled task? So, you have it running as an unattened scheduled task, there is nothing wrong with that. No, you can't schedule a DLL to run by itself. A DLL must be hosted by an EXE that's using the DLL. The Task Scheduler knows nothing a about the DLL interfaces. Only a program/exe that was written by the developer to use the DLL would know about the DLL's interfaces and methods, and the Task Scheduler doesn't know them. Quote: > > 2. The xml file that I'm creating needs a schema. Is there any good > information on how to create the schema for such a file? It's a simple xml > file with that's in the following format: > |
My System Specs![]() |
| | #3 (permalink) |
| | Re: Console Window and XmlSchema I'm looking for some examples for creating a schema programmatically. I've searched using Yahoo and found articles in creating a schema in the IDE of VS but nothing programmatically. The reason I don't want the console to flash was because it may be distracting for the user. I'm trying to make the app user friendly as possible. -- TC "Mr. Arnold" wrote: Quote: > > "Terrance" <Terrance@xxxxxx> wrote in message > news:267E91B0-62F8-4B3E-8C24-9CAC831DFBFB@xxxxxx Quote: > > Good Afternoon: > > > > I have two questions I was hoping someone can help me with. > > > > 1. I've created a app that creates a xml file; the project was constructed > > as a console window. I want to know is there anyway to suppress the > > console > > window from showing? One of the options is I have is to generate the xml > > file > > without showing the console window. Even though I'm not calling the > > Console > > it still flashes. Any suggestions. I plan on running this exe as a > > scheduled > > task. Is there a better method in doing that; like should it be a library > > (dll) file? Would a dll run as a scheduled task? > What do you care if the Console application is showing the console? > So, you have it running as an unattened scheduled task, there is nothing > wrong with that. > > No, you can't schedule a DLL to run by itself. A DLL must be hosted by an > EXE that's using the DLL. The Task Scheduler knows nothing a about the DLL > interfaces. Only a program/exe that was written by the developer to use the > DLL would know about the DLL's interfaces and methods, and the Task > Scheduler doesn't know them. > Quote: > > > > 2. The xml file that I'm creating needs a schema. Is there any good > > information on how to create the schema for such a file? It's a simple xml > > file with that's in the following format: > > > There are plenty of articles on Google or Dogpile.com > > |
My System Specs![]() |
| | #4 (permalink) |
| | Re: Console Window and XmlSchema "Terrance" <Terrance@xxxxxx> wrote in message news:97A6A845-62B3-4985-902E-9067AFF19D97@xxxxxx Quote: > I'm looking for some examples for creating a schema programmatically. I've > searched using Yahoo and found articles in creating a schema in the IDE of > VS > but nothing programmatically. file. The XML is validated against its XSD. You change the the XML file, you create a XSD from it in VS 2008 or some other XML tool, and you validate the XML file's data and tags against its XSD programmically to veryify that the XML is correct when using the XML in a program.. Quote: > > The reason I don't want the console to flash was because it may be > distracting for the user. I'm trying to make the app user friendly as > possible. runs unattended in the background, uses a thread process on a timer event, the tread executes, its processes and goes back to sleep until the elapsed time event for the thread fires again to start the process over --- in intervals. Quote: > > "Mr. Arnold" wrote: > Quote: >> >> "Terrance" <Terrance@xxxxxx> wrote in message >> news:267E91B0-62F8-4B3E-8C24-9CAC831DFBFB@xxxxxx Quote: >> > Good Afternoon: >> > >> > I have two questions I was hoping someone can help me with. >> > >> > 1. I've created a app that creates a xml file; the project was >> > constructed >> > as a console window. I want to know is there anyway to suppress the >> > console >> > window from showing? One of the options is I have is to generate the >> > xml >> > file >> > without showing the console window. Even though I'm not calling the >> > Console >> > it still flashes. Any suggestions. I plan on running this exe as a >> > scheduled >> > task. Is there a better method in doing that; like should it be a >> > library >> > (dll) file? Would a dll run as a scheduled task? >> What do you care if the Console application is showing the console? >> So, you have it running as an unattened scheduled task, there is nothing >> wrong with that. >> >> No, you can't schedule a DLL to run by itself. A DLL must be hosted by >> an >> EXE that's using the DLL. The Task Scheduler knows nothing a about the >> DLL >> interfaces. Only a program/exe that was written by the developer to use >> the >> DLL would know about the DLL's interfaces and methods, and the Task >> Scheduler doesn't know them. >> Quote: >> > >> > 2. The xml file that I'm creating needs a schema. Is there any good >> > information on how to create the schema for such a file? It's a simple >> > xml >> > file with that's in the following format: >> > >> There are plenty of articles on Google or Dogpile.com >> >> |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Delayed display of console window | Vista General | |||
| Resize the console window ? | Virtual PC | |||
| Console - a replacement for old command window | PowerShell | |||
| An alternative console window for PowerShell | PowerShell | |||