Giter Site home page Giter Site logo

shonharsh / rpadev-s03p04-dictionaries-doubles-vb Goto Github PK

View Code? Open in Web Editor NEW
2.0 1.0 0.0 38 KB

This project is my solution in VB to the Dictionaries & Doubles practice found in section 03 practice 04 of the UiPath - RPA Developer Foundation course.

License: MIT License

Visual Basic .NET 100.00%
academic academy artificial-intelligence atom automation config education git guide learning markdown process robot rpa studio training-materials trending uipath windows vb-net

rpadev-s03p04-dictionaries-doubles-vb's Introduction

S03P04 Dictionaries & Doubles

This project is my solution in VB to the Dictionaries & Doubles practice found in section 03 practice 04 of the UiPath - RPA Developer Foundation course.

Getting Started

After making a pull request or downloading the project, open the Main.xaml in UiPath Studio. The robot can be run with the play button in the ribbon and the result can be seen in output panel.

Practice Requirements

Calculate the combined weight of the packages sent to one city

Consider the database of a shipping company containing people and the packages they are sending to certain cities across the world, along with their weight. The database is a Dictionary with the key of String type (the names of the persons) and the values of Dictionary (String/Cities, Double/Weight) type.

Please calculate the overall weight for one city destination. Once this is done, the user should be presented with an input dialog containing the distinct list of cities present in the input data dictionary. If the user chooses no value from the input dialog, print "Nothing chosen by the user"; otherwise you can print "The combined weight of the packages sent to is x.xx" (use double digits).

Note: For input data, download the workflow below, which already has the Dictionary defined.

New Dictionary(Of String, Dictionary(Of String, Double)) From {

{"John C", New Dictionary(Of String, Double) From {{"Madrid",2.1},{"Paris",1.1}} },

{"Sarah C", New Dictionary(Of String, Double) From {{"New York",2.1},{"Paris",3.3},{"Berlin", 0.8}} },

{"Kyle R", New Dictionary(Of String, Double) From {{"San Francisco",2.8},{"New York",1.1}} },

{"Johnny B", New Dictionary(Of String, Double) From {{"New York",2.1},{"Paris",3.3}, {"Cairo",1.3}, {"Chicago",1.9}} }}

Details

Course: UiPath - RPA Developer Foundation

Section: 03 Data Manipulation

Practice: 04 Dictionaries & Doubles

Project Format: Windows, VB

GitHub: https://github.com/ShonHarsh/RPADev-S03P04-Dictionaries-Doubles-VB

Sample Output

04/09/2024 23:30:31 => [Debug] Debug started for file: Main
04/09/2024 23:30:32 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB execution started
04/09/2024 23:30:32 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.Begin;
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.NoSelectionNote; Nothing chosen by the user.
Printing all items.
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.NoSelectionPrint; City: Madrid, Total Weight: 2.1
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.NoSelectionPrint; City: Paris, Total Weight: 7.7
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.NoSelectionPrint; City: New York, Total Weight: 5.300000000000001
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.NoSelectionPrint; City: Berlin, Total Weight: 0.8
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.NoSelectionPrint; City: San Francisco, Total Weight: 2.8
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.NoSelectionPrint; City: Cairo, Total Weight: 1.3
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.NoSelectionPrint; City: Chicago, Total Weight: 1.9
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB.Main.End;
04/09/2024 23:30:33 => [Info] RPADev-S03P04-Dictionaries-Doubles-VB execution ended in: 00:00:01

Architecture Requirements

A standard UiPath, Studio to Orchestrator cloud setup is the base of operation. It is easy to setup and free.

  1. An Orchestrator connection - Visit https://cloud.uipath.com/ and authenticate or sign up.
  2. UiPath Studio is used to run the robot. Note that Studio Web can be used directly in Orchestrator but I recommend installing the Studio IDE application.

UiPath Setup Guide

Git Notes

Clone the project to develop or change it.

git clone https://github.com/ShonHarsh/RPADev-S03P04-Dictionaries-Doubles-VB

Links

RPS Developer Foundation Sections

  1. Get Started With RPA Development

  2. Variables, Data Types And Control Flow In Studio

    P01 RPADev-S02P01-ForEachIfStatement [C#] [VB] [Windows Legacy]

    P02 RPADev-S02P02-GenericValue [C#] [VB] [Windows Legacy]

    P03 RPADev-S02P03-Switch [C#] [VB] [Windows Legacy]

  3. Data Manipulation In Studio

    P01 RPADev-S03P01-Lists [C#] [VB] [Windows Legacy]

    P02 RPADev-S03P03-Dictionaries-Integers [C#] [VB] [Windows Legacy]

    P03 RPADev-S03P04-Dictionaries-Doubles [C#] [VB] [Windows Legacy]

    P04 RPADev-S03P05-InputValidation [C#] [VB] [Windows Legacy]

    P05 RPADev-S03P06-ReplacingPlaceholders [C#] [VB] [Windows Legacy]

    P06 RPADev-S03P07-ExtractEmailAddress [C#] [VB] [Windows Legacy]

    P07 RPADev-S03P08-ExtractEmailAddressRegEx [C#] [VB] [Windows Legacy]

  4. Excel And Data Tables With Studio

    P01 RPADev-S04P01-CalculatingSums [C#] [VB] [Windows Legacy]

    P02 RPADev-S04P02-CalculatingLossInvoices [C#] [VB] [Windows Legacy]

    P03 RPADev-S04P03-CalculatingPercentagesOfExpenses [C#] [VB] [Windows Legacy]

  5. UI Automation With Studio

    P01 RPADev-S05P01-PasswordGenerator [C#] [VB] [Windows Legacy]

    P02 RPADev-S05P02-TheRPAChallenge [C#] [VB] [Windows Legacy]

    P03 RPADev-S05P03-InputActions [C#] [VB] [Windows Legacy]

    P04 RPADev-S05P04-OutputActions [C#] [VB] [Windows Legacy]

    P05 RPADev-S05P05-DataScraping [C#] [VB] [Windows Legacy]

  6. Selectors In Studio

    P01 RPADev-S06P01-GetAndSortData [C#] [VB] [Windows Legacy]

    P02 RPADev-S06P02-SetData [C#] [VB] [Windows Legacy]

    P03 RPADev-S06P03-Highlight-TypeItems [C#] [VB] [Windows Legacy]

  7. Project Organization In Studio

    P02 RPADev-S07P02-StateMachines [C#] [VB] [Windows Legacy]

    P03 RPADev-S07P03-FixMyWorkflow [C#] [VB] [Windows Legacy]

    P04 RPADev-S07P04-Libraries

  8. Error And Exception Handling In Studio

  9. Debugging In Studio

  10. PDF Automation In Studio

  11. Email Automation With Studio

  12. Orchestrator For RPA Developers

  13. Robotic Enterprise Framework Overview

rpadev-s03p04-dictionaries-doubles-vb's People

Contributors

shonharsh avatar

Stargazers

InterfaceDivision-Shon avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.