Results 1 to 9 of 9

Thread: how to create nzb file

  1. #1

    Thread Starter
    Member
    Join Date
    Mar 2008
    Posts
    46

    how to create nzb file

    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?

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: how to create nzb file

    What in the world is an nzb file?

  3. #3

    Thread Starter
    Member
    Join Date
    Mar 2008
    Posts
    46

    Re: how to create 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

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: how to create nzb file

    @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.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  5. #5
    Frenzied Member
    Join Date
    Nov 2005
    Posts
    1,834

    Re: how to create nzb file

    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

  6. #6

    Thread Starter
    Member
    Join Date
    Mar 2008
    Posts
    46

    Re: how to create nzb file

    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 - &quot;Bohemoth .inf&quot; 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="&quot;Bohemoth .inf&quot; yEnc (1/1)">
    <groups><group>alt.binaries.atari</group></groups>
    <segments>
    <segment bytes="2314" number="1">[email protected]</segment>
    </segments>
    </file>
    </nzb>

  7. #7
    PowerPoster
    Join Date
    Nov 2002
    Location
    Manila
    Posts
    7,629

    Re: how to create nzb file

    The MSXML object has all the properties and methods you'll need.

  8. #8

    Thread Starter
    Member
    Join Date
    Mar 2008
    Posts
    46

    Re: how to create nzb file

    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

  9. #9
    PowerPoster
    Join Date
    Nov 2002
    Location
    Manila
    Posts
    7,629

    Re: how to create nzb file

    Try doing a search for MSXML in the site. It would be faster.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width