Results 1 to 13 of 13

Thread: [RESOLVED] Dployment

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jul 2009
    Posts
    1,103

    Resolved [RESOLVED] Dployment

    What is a Inno setup deployment in vb.net?What is its difference with the deployment using the click once?

    Is there any other alternative way of deplorment except these two?

  2. #2
    Fanatic Member
    Join Date
    Nov 2007
    Posts
    520

    Re: Dployment

    click once allows you to publish to ftp / website, as well as a local file system by realistically...clicking once. It also updates the versions, so when the next time your app is ran, it checks for updates.

    the other one is basically a more detailed offline setup. (from my understanding)

  3. #3
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: Dployment

    Inno is an install engine... so is ClickOnce... so is WiseInstaller, Install Shield, Windows Installer......In the end, they all do the same thing, they just go about it differently. And at different prices.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  4. #4

    Thread Starter
    Frenzied Member
    Join Date
    Jul 2009
    Posts
    1,103

    Re: Dployment

    i was having a look at this thread.......what kind of deployment is this?

    http://www.vbforums.com/showthread.php?t=599324

  5. #5

    Thread Starter
    Frenzied Member
    Join Date
    Jul 2009
    Posts
    1,103

    Question Re: Dployment

    Quote Originally Posted by techgnome View Post
    Inno is an install engine... so is ClickOnce... so is WiseInstaller, Install Shield, Windows Installer......In the end, they all do the same thing, they just go about it differently. And at different prices.

    -tg
    Please define the exact meaning of the term deployment sir.....

    Which one of the above is of least cost or,in fact free of cost?

  6. #6
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Dployment

    This question is not related to VB.NET and this site has a forum dedicated to deployment.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  7. #7
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649

    Re: Dployment

    Quote Originally Posted by gautamshaw View Post
    Please define the exact meaning of the term deployment sir.....
    The secret art of creating an installer... Well, it's not so secret but the program mentioned will create an installer for you, a Setup.exe/.msi file that your users can run to install your application on their computer.

  8. #8
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Dployment

    Quote Originally Posted by Joacim Andersson View Post
    The secret art of creating an installer
    That's not quite accurate. Deployment is the act of releasing your application to your users and all that that involves. Creating the installer is only part of that, and not even a mandatory part. If you create a simple application that consists of just an EXE then deployment might consist of simply copying that EXE to another machine, which is known as "XCOPY deployment".

    That said, this is the second time in two days I've seen someone ask to have the term deployment explained. I'd suggest that people look first and ask questions later. A quick search on Dictionary.com and Google would provide all the information you need.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  9. #9
    I'm about to be a PowerPoster! Joacim Andersson's Avatar
    Join Date
    Jan 1999
    Location
    Sweden
    Posts
    14,649

    Re: Dployment

    Quote Originally Posted by jmcilhinney View Post
    That's not quite accurate. Deployment is the act of releasing your application to your users and all that that involves. Creating the installer is only part of that, and not even a mandatory part.
    Yes, you're of course correct and I'm aware of the fact that I gave a simplified answer, but as I understood the thread the OP really wanted to know what ClickOnce and InnoSetup was used for.

  10. #10

    Thread Starter
    Frenzied Member
    Join Date
    Jul 2009
    Posts
    1,103

    Question Re: Dployment

    i am extremely sorry jmc....

    i have been googling through how to create the setup using the inno....

    i installed the inno and got this screen:

    Attachment 75616

    but i cant understand how to go for this......

    i had a look at this thread.....

    http://www.vbforums.com/showthread.p...52#post3655517

    but i cant understand how to create the setup using the PACKAGE AND DEPLOYMENT wizard which i am asked to do......

    should i install something to create the setup using PACKAGE AND DEPLOYMENT wizard....or it it refering me to the way of creating the setup as shown in this thread:
    http://www.vbforums.com/showthread.php?t=599324
    please help me out of it...........
    Last edited by gautamshaw; Feb 21st, 2010 at 01:21 PM.

  11. #11
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Dployment

    The Package & Deployment Wizard is a VB6 component for creating installers for VB6 apps. Inno is a tool for creating software installers that is not tied to any one IDE or language. Neither have anything specific to do with VB.NET.

    If you want help with Inno then I suggest you start by consulting the Inno documentation and any tutorials you can find. It is not a simple drag and drop affair and you need to learn how to write scripts to perform the tasks you want. If you have specific questions that you want to ask at VBForums then they belong in the Deployment forum, not the VB.NET forum.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  12. #12

    Thread Starter
    Frenzied Member
    Join Date
    Jul 2009
    Posts
    1,103

    Re: Dployment

    thanks for the suggestion jmc........

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

    Re: [RESOLVED] Dployment

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

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