IronMagLabs Osta Rx


Simple Visual Basic like Program Design to make Application and Web-Tool

Results 1 to 8 of 8
  1. #1
    Bohemian Extraordinaire
    ELITE MEMBER

    maniclion's Avatar

    Join Date
    Aug 2003
    Gender
    Male
    Location
    Mēns Incognita
    Posts
    25,581
    Rep Points
    396362507


    Simple Visual Basic like Program Design to make Application and Web-Tool

    I know we have some IT guys here....

    I need a quick and easy programming solution as much like VB to build a few applications for Designing Solar electric systems that I could give out as a stand-alone tool and also have on our website. I am very good in VB and don't have the time to sit and learn a whole new language.

    I'll barely have time to work with this, but I really want to do it so I can free up some of my time by having my skills in a program that my clients can use to do the work themselves.

    I looked at Visual Studio but can't figure out which is the most basic while still giving me enough to build a stand-alone app and a web-app. Any of you familiar with these tools or something similar, but better?


    Basically it's going to be a form with drop-down menus or text box inputs. I've done a version in Excel, but many of my customers can't figure out how to use excel spreadsheets properly. I figure a point and click form without all the cells and other stuff will be less confusing.... Once they get the system sized they will be able to email the final result to me as a CSV file that I can import to ours sales system and create an order straight from that....
    Last edited by maniclion; 10-04-2011 at 04:36 PM.
    Coarse edged youth, the irish pendants string from their smiles
    not yet plucked as to slacken the seams
    and drag down the features of age,
    no folds or creases from unkempt wear
    eyes of tranquilty, crystalline-beads
    no sign of despair in their hair, nor their hearts
    but oh they have yet to be experienced and that makes aging so very worth it...ML circa2012

  2. #2
    Senior Member
    ELITE MEMBER

    danzik17's Avatar

    Join Date
    Oct 2005
    Gender
    Male
    Location
    Connecticut
    Posts
    3,796
    Rep Points
    61145583


    I've got no idea how complex you need this to be, but I'll bet you can do it relatively easily just with HTML / Javascript ( jQuery ).

    People are also more likely to use it if it's a web tool and not something you need to download and install/run.
    Ron Paul 2012

    No gym for home, work out floor with 30, but is it for 20 like 30 lb when you no lift it to be for men, for 30 lbs instead? or half is 10 for 20 pounds?

  3. #3
    Bohemian Extraordinaire
    ELITE MEMBER

    maniclion's Avatar

    Join Date
    Aug 2003
    Gender
    Male
    Location
    Mēns Incognita
    Posts
    25,581
    Rep Points
    396362507


    For my contractors I need a stand alone private version because they get special pricing the general public doesn't need to see, also a lot of these guys live on remote parts of the Islands where Internet connections aren't prevalent even in the coffee shops where most of them call their "office". I will have a basic web option as well for calculating mounting options and quick DIY system sizing with retail pricing.
    Coarse edged youth, the irish pendants string from their smiles
    not yet plucked as to slacken the seams
    and drag down the features of age,
    no folds or creases from unkempt wear
    eyes of tranquilty, crystalline-beads
    no sign of despair in their hair, nor their hearts
    but oh they have yet to be experienced and that makes aging so very worth it...ML circa2012

  4. #4
    Bohemian Extraordinaire
    ELITE MEMBER

    maniclion's Avatar

    Join Date
    Aug 2003
    Gender
    Male
    Location
    Mēns Incognita
    Posts
    25,581
    Rep Points
    396362507


    Quote Originally Posted by danzik17 View Post
    I've got no idea how complex you need this to be, but I'll bet you can do it relatively easily just with HTML / Javascript ( jQuery ).

    People are also more likely to use it if it's a web tool and not something you need to download and install/run.
    I also want something with hidden code so our competitors don't steal it and pretend it's a service they provide....

    One of them is a German who would do just that....
    Coarse edged youth, the irish pendants string from their smiles
    not yet plucked as to slacken the seams
    and drag down the features of age,
    no folds or creases from unkempt wear
    eyes of tranquilty, crystalline-beads
    no sign of despair in their hair, nor their hearts
    but oh they have yet to be experienced and that makes aging so very worth it...ML circa2012

  5. #5
    LAM
    LAM is offline
    Is Doin It 4 Da Shorteez

    LAM's Avatar

    Join Date
    May 2002
    Gender
    Male
    Location
    Sin City
    Posts
    12,498
    Rep Points
    349917665


    all my experience with VB is as the front end for a DB like ms access , SQL server, etc.

    I am lost when it comes to web stuff
    I train differently than most, my beef is with gravity the weights on the bar are just the medium...Thanks to Wall Street your slice of the American Pie has been reduced to a crumb.

  6. #6
    Registered User

    NeilPearson's Avatar

    Join Date
    Sep 2005
    Gender
    Male
    Location
    USA
    Posts
    3,001
    Rep Points
    13325264

    When it comes to Visual Studio, it's all going to be fairly complex. You kind of need to know what you are doing. You can make a webpage that authenticates though so didn't users have different permissions.

    Old VB is pretty much a dead language. Personally, if it was a windows app, I would do it in C# using WPF. If it's a web app, it depends on how custom the graphics need to be. You have lots of options from javascript to Silverlight (if you need a lot of control)

    Either way, if your background is VB, there is going to be a steep learning curve to design anything that is really professional.

    If it is just a form with a few controls, the easiest would probably be a C# WinForms application. That can do the trick and your VB background would probably have the most in common with it.
    Love, Relationship and Dating Advice Forum

    www.loveadviceforum.com

  7. #7
    Senior Member
    ELITE MEMBER

    danzik17's Avatar

    Join Date
    Oct 2005
    Gender
    Male
    Location
    Connecticut
    Posts
    3,796
    Rep Points
    61145583


    Quote Originally Posted by maniclion View Post
    I also want something with hidden code so our competitors don't steal it and pretend it's a service they provide....

    One of them is a German who would do just that....
    Just because it's a desktop app, don't assume your code is hidden. It's trivial to decompile a .NET application using reflector.

    Besides, you can implement the heavy logic in a web service / controller and only present the UI portion to the user. That way, your logic/code truly is hidden.

    If you *have* to have an offline version, I would make it read some XML or JSON catalog that you provide, that way you can offer updated versions of it either automatically or on your website as your prices adjust.
    Ron Paul 2012

    No gym for home, work out floor with 30, but is it for 20 like 30 lb when you no lift it to be for men, for 30 lbs instead? or half is 10 for 20 pounds?

  8. #8
    Bohemian Extraordinaire
    ELITE MEMBER

    maniclion's Avatar

    Join Date
    Aug 2003
    Gender
    Male
    Location
    Mēns Incognita
    Posts
    25,581
    Rep Points
    396362507


    Quote Originally Posted by NeilPearson View Post
    When it comes to Visual Studio, it's all going to be fairly complex. You kind of need to know what you are doing. You can make a webpage that authenticates though so didn't users have different permissions.

    Old VB is pretty much a dead language. Personally, if it was a windows app, I would do it in C# using WPF. If it's a web app, it depends on how custom the graphics need to be. You have lots of options from javascript to Silverlight (if you need a lot of control)

    Either way, if your background is VB, there is going to be a steep learning curve to design anything that is really professional.

    If it is just a form with a few controls, the easiest would probably be a C# WinForms application. That can do the trick and your VB background would probably have the most in common with it.
    I'm going with MS Visual Studio Lightswitch, $200 and I can customize with VB. It can pull part numbers and prices from the SQL db so I don't have to hand enter data, I can create a desktop, web and cloud app, it had authentication with permissions, very simple UI that looks like any other MS Office app. Once I get experienced I could upgrade to the Pro or Premium if we need more advanced functionality or even custom graphics, but this one says it allows customized visual styles....

    I'm excited to get started, but also remember how tedious entering all that code can get, lots of red bull and loud music here I come again...

    At least I have all my formulas pretty much sketched out...

    Like [(width of module + .75)*(number of modules]+.75 = length of rail
    Then I divide by 25 if whole number done else drop integer to get whole number subtract from length of rail if 25' rail in stock and start over dividing the remainder by the next size of rail in stock repeat to smallest length of rail.... That's about the hardest equation I can think of being needed... The rest are going to be whole numbers always...
    Coarse edged youth, the irish pendants string from their smiles
    not yet plucked as to slacken the seams
    and drag down the features of age,
    no folds or creases from unkempt wear
    eyes of tranquilty, crystalline-beads
    no sign of despair in their hair, nor their hearts
    but oh they have yet to be experienced and that makes aging so very worth it...ML circa2012

Similar Threads

  1. Simple basic beginner workout.
    By TJ Cline in forum Training
    Replies: 14
    Last Post: 12-28-2005, 12:48 AM
  2. Make your own Wrist Roller (Simple to make)
    By Randy in forum Training
    Replies: 27
    Last Post: 01-22-2005, 04:11 PM
  3. Design me an ab program?
    By cheesegrater in forum Training
    Replies: 0
    Last Post: 05-17-2004, 07:49 PM
  4. basic mass program
    By swordfish in forum Training
    Replies: 12
    Last Post: 09-02-2003, 10:22 AM
  5. a basic bodybuilding program
    By swordfish in forum Training
    Replies: 10
    Last Post: 08-24-2003, 02:46 PM

Posting Permissions

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


DISCLAIMER:
All health, fitness, diet, nutrition & supplement information presented on IronMagazineForums.com's pages is intended as an educational resource and is not intended as a substitute for proper medical advice. We do not condone the use of anabolic steroids (AAS), all information about AAS is for educational and entertainment purposes only. Consult your physician or health care professional before performing any of the exercises, or following any diet, nutrition or supplement advice described on this website. As well as any exercise technique or regimen, diet, supplement, etc., particularly if you are pregnant or nursing, or if you are elderly or have chronic or recurring medical conditions. Discontinue any exercise that causes you pain or severe discomfort and consult a medical expert. The statements made about products have not been evaluated by the Food and Drug Administration (U.S.). They are not intended to diagnose, treat, cure or prevent any condition or disease. Please consult with your own physician or health care practitioner regarding the suggestions and recommendations made at IronMagazineForums.com. Neither the author of the information, nor the producer, nor distributors of such information make any warranty of any kind in regard to the content of the information presented on this website. Except as specifically stated on this site, neither IronMagazineForums.com, nor any of its authors or other representatives will be liable for damages arising out of, or in connection with the use of this site. This is a comprehensive limitation of liability that applies to all damages of any kind, including (without limitation) compensatory, direct, indirect or consequential damages, loss of data, income or profit, loss of or damage to property and claims of third parties. Sponsors pay for advertising space, we have no affiliation with the companies that have banners displayed on our websites. Please be advised it is your responsibility to check the laws that govern your country, state, or province in regards to items offered by some companies you may read about on this site.