Console Window and XmlSchema

Console Window and XmlSchema

am 14.04.2008 21:14:02 von Terrance

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:



Joe Smith
.... other elements

....

--
TC

Re: Console Window and XmlSchema

am 15.04.2008 13:48:49 von MR. Arnold

"Terrance" wrote in message
news:267E91B0-62F8-4B3E-8C24-9CAC831DFBFB@microsoft.com...
> 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.

>
> 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

Re: Console Window and XmlSchema

am 15.04.2008 19:16:01 von Terrance

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:

>
> "Terrance" wrote in message
> news:267E91B0-62F8-4B3E-8C24-9CAC831DFBFB@microsoft.com...
> > 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.
>
> >
> > 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
>
>

Re: Console Window and XmlSchema

am 16.04.2008 01:39:35 von MR. Arnold

"Terrance" wrote in message
news:97A6A845-62B3-4985-902E-9067AFF19D97@microsoft.com...
> 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.

Programmically create a XSD to do what? The XSD is based off an existing XML
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..

>
> 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.

Then you use a Windows Service application that doesn't use a console. It
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.


>
> "Mr. Arnold" wrote:
>
>>
>> "Terrance" wrote in message
>> news:267E91B0-62F8-4B3E-8C24-9CAC831DFBFB@microsoft.com...
>> > 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.
>>
>> >
>> > 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
>>
>>