i am newbie to vb. i need to create a nzb file through vb application .for this what i to do?.pls help me to create the nzb file and what procedure to follow?
Printable View
i am newbie to vb. i need to create a nzb file through vb application .for this what i to do?.pls help me to create the nzb file and what procedure to follow?
What in the world is an nzb file?
i seen NZB file format which is in XML format .i am doing project using NNTP. so far i have finished upto split the Article based on size .i need to make this xml format or NZB file format
@Hack, here -> http://en.wikipedia.org/wiki/NZB
So then you could use the XML reference. Project > References > "Microsoft XML v3 (or v6)" > click OK. It will help you read/write xml files.
Do you already have the headers of the files you want to create the NZB for? Without all the data below you won't be able to make the NZB file.
Poster name
Date of posting
Subject of the file
Group where the file is posted in
Segment bytes, number and MessageID
i have all details mentioned above.i saw NZB file .File content is like this
i need to create a file should be like this .can u show me some code for this.
HTML Code:<?xml version="1.0" encoding="iso-8859-1" ?>
<!DOCTYPE nzb PUBLIC "-//newzBin//DTD NZB 1.0//EN" "http://www.newzbin.com/DTD/nzb/nzb-1.0.dtd">
<!-- NZB Generated by Binsearch.info (fcgi) -->
<nzb xmlns="http://www.newzbin.com/DTD/2003/nzb">
<file poster="[email protected] (PoDunk)" date="1211674289" subject="Intent - "Bohemoth .inf" yEnc (1/1)">
<groups><group>alt.binaries.atari</group></groups>
<segments>
<segment bytes="2190" number="1">[email protected]</segment>
</segments>
</file>
<file poster="[email protected] (PoDunk)" date="1211671105" subject=""Bohemoth .inf" yEnc (1/1)">
<groups><group>alt.binaries.atari</group></groups>
<segments>
<segment bytes="2314" number="1">[email protected]</segment>
</segments>
</file>
</nzb>
The MSXML object has all the properties and methods you'll need.
i don't know how to use msxml for this.as previously mentioned , i need to create nzb file .pls show me some sample coding. i am eagerly waiting to see your samples
Try doing a search for MSXML in the site. It would be faster.