示例#1
0
    IEnumerator GetRequest(string uri)
    {
        using (UnityWebRequest webRequest = UnityWebRequest.Get(uri))
        {
            // Request and wait for the desired page.
            yield return(webRequest.SendWebRequest());

            string[] pages = uri.Split('/');
            int      page  = pages.Length - 1;

            if (webRequest.isNetworkError)
            {
                //Debug.Log(pages[page] + ": Error: " + webRequest.error);
            }
            else
            {
                string receivedData = webRequest.downloadHandler.text;
                Debug.Log(pages[page] + ":\nReceived: " + receivedData);

                dataset1 = JsonUtility.FromJson <MainDataset>(receivedData);

                Debug.Log("Plates read: " + dataset1.data.Count);

                createObjectsFromDataset();
            }
        }
    }
        public override global::System.Data.DataSet Clone()
        {
            MainDataset cln = ((MainDataset)(base.Clone()));

            cln.InitVars();
            cln.SchemaSerializationMode = this.SchemaSerializationMode;
            return(cln);
        }
        public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs)
        {
            MainDataset ds = new MainDataset();

            global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
            global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
            global::System.Xml.Schema.XmlSchemaAny         any      = new global::System.Xml.Schema.XmlSchemaAny();
            any.Namespace = ds.Namespace;
            sequence.Items.Add(any);
            type.Particle = sequence;
            global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
            if (xs.Contains(dsSchema.TargetNamespace))
            {
                global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                try {
                    global::System.Xml.Schema.XmlSchema schema = null;
                    dsSchema.Write(s1);
                    for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                    {
                        schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                        s2.SetLength(0);
                        schema.Write(s2);
                        if ((s1.Length == s2.Length))
                        {
                            s1.Position = 0;
                            s2.Position = 0;
                            for (; ((s1.Position != s1.Length) &&
                                    (s1.ReadByte() == s2.ReadByte()));)
                            {
                                ;
                            }
                            if ((s1.Position == s1.Length))
                            {
                                return(type);
                            }
                        }
                    }
                }
                finally {
                    if ((s1 != null))
                    {
                        s1.Close();
                    }
                    if ((s2 != null))
                    {
                        s2.Close();
                    }
                }
            }
            xs.Add(dsSchema);
            return(type);
        }
        private void printToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {
                try
                {
                    ReportForm rForm = new ReportForm();
                    rForm.rForm = 1;
                    rForm.Text  = "Sales Report";
                    ReportViewer rViewer  = rForm.rViewerPanel2;
                    MainDataset  mDataSet = new MainDataset();
                    DataTable    dtSales  = mDataSet.Tables[1];
                    //First SalesLists
                    for (int i = 0; i < salesGrid.Rows.Count; i++)
                    {
                        dtSales.Rows.Add((i + 1).ToString(), salesGrid[1, i].Value.ToString(), salesGrid[2, i].Value.ToString(), salesGrid[3, i].Value.ToString(), salesGrid[4, i].Value.ToString(), salesGrid[5, i].Value.ToString());
                    }
                    ReportDataSource rds = new ReportDataSource("SalesDataSet", dtSales);
                    rViewer.LocalReport.DataSources.Clear();
                    rViewer.LocalReport.DataSources.Add(rds);

                    List <ReportParameter> rpLists = new List <ReportParameter>();
                    if (_select.SelectedIndex == 0)
                    {
                        rpLists.Add(new ReportParameter("strA", _select.Text));
                    }
                    else
                    {
                        rpLists.Add(new ReportParameter("strA", "Date Between [ " + d1.Value.ToShortDateString() + " to " + d2.Value.ToShortDateString() + " ]"));
                    }
                    rpLists.Add(new ReportParameter("gTotal", gTotal.Text));
                    rViewer.LocalReport.SetParameters(rpLists);

                    rViewer.RefreshReport();
                    rForm.MdiParent = MainForm.mForm;
                    rForm.Show();
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
示例#5
0
 void displayDataset(MainDataset datasetIn)
 {
     for (int i = 0; i < datasetIn.data.Count; i++)
     {
         PlateInfo plateInfo = datasetIn.data[i];
         Debug.Log("------------------------------------------------\n");
         Debug.Log("Ruta: ");
         foreach (int Ruta in plateInfo.Ruta)
         {
             Debug.Log(Ruta);
         }
         Debug.Log("\nTrips:");
         foreach (int trip in plateInfo.Viaje)
         {
             Debug.Log(trip);
         }
         Debug.Log("Start: " + plateInfo.inicio);
     }
 }
示例#6
0
    IEnumerator Upload()
    {
        string topRoad    = "";
        int    maxTraffic = 0;

        foreach (var roads in carDensity.Keys)
        {
            if (carDensity[roads] > maxTraffic)
            {
                maxTraffic = carDensity[roads];
                topRoad    = roads;
            }
        }
        string myData = "{\"speed\":[" + topRoad + "],\"slow\":[]}";

        using (UnityWebRequest webRequest = UnityWebRequest.Post(webServiceURLAlternate, myData))
        {
            // Request and wait for the desired page.
            yield return(webRequest.SendWebRequest());

            string[] pages = webServiceURLAlternate.Split('/');
            int      page  = pages.Length - 1;

            if (webRequest.isNetworkError)
            {
                //Debug.Log(pages[page] + ": Error: " + webRequest.error);
            }
            else
            {
                string receivedData = webRequest.downloadHandler.text;
                Debug.Log(pages[page] + ":\nReceived: " + receivedData);

                dataset1 = JsonUtility.FromJson <MainDataset>(receivedData);

                Debug.Log("Plates read: " + dataset1.data.Count);

                createObjectsFromDataset();
            }
        }
    }
示例#7
0
        private void PrintDocs(bool isPrint)
        {
            try
            {
                LoadInfo();
                ReportForm   rForm        = new ReportForm();
                ReportViewer rViewer      = rForm.rViewerPanel;
                MainDataset  mDataSet     = new MainDataset();
                DataTable    dtSalesLists = mDataSet.Tables[0];

                //First SalesLists
                for (int i = 0; i < billgrid.Rows.Count; i++)
                {
                    String _name, _quantity, _rate, _total;
                    if (billgrid[2, i].Value == null)
                    {
                        _name = "";
                    }
                    else
                    {
                        _name = billgrid[2, i].Value.ToString();
                    }
                    if (billgrid[3, i].Value == null)
                    {
                        _quantity = "";
                    }
                    else
                    {
                        _quantity = billgrid[3, i].Value.ToString();
                    }
                    if (billgrid[4, i].Value == null)
                    {
                        _rate = "";
                    }
                    else
                    {
                        _rate = billgrid[4, i].Value.ToString();
                    }
                    if (billgrid[5, i].Value == null)
                    {
                        _total = "";
                    }
                    else
                    {
                        _total = billgrid[5, i].Value.ToString();
                    }
                    if (!_total.Trim().Equals(""))
                    {
                        dtSalesLists.Rows.Add((i + 1).ToString(), _name, _quantity, _rate, _total);
                    }
                }
                ReportDataSource rds = new ReportDataSource("SalesLists", dtSalesLists);
                rViewer.LocalReport.DataSources.Clear();
                rViewer.LocalReport.DataSources.Add(rds);

                List <ReportParameter> rpLists = new List <ReportParameter>();
                rpLists.Add(new ReportParameter("rno", _RECEIPTNO));
                rpLists.Add(new ReportParameter("date", dateTimepick.Value.ToString()));
                rpLists.Add(new ReportParameter("title", title.Text.Trim()));

                String _CUSTOMER = "********"; if (!customer.Text.Trim().Equals(""))
                {
                    _CUSTOMER = customer.Text.Trim();
                }

                rpLists.Add(new ReportParameter("customer", _CUSTOMER));
                rpLists.Add(new ReportParameter("status", _status.Text.Trim()));
                rpLists.Add(new ReportParameter("subtotal", subTotal.Text.Trim()));
                rpLists.Add(new ReportParameter("servicecharge", sCharge.Value.ToString()));
                rpLists.Add(new ReportParameter("discount", discount.Value.ToString()));
                rpLists.Add(new ReportParameter("grandtotal", GrandTotal.Text.Trim()));
                rpLists.Add(new ReportParameter("pAmt", pAmtTemp.Text.Trim()));
                rpLists.Add(new ReportParameter("rAmt", rAmt.Text.Trim()));

                try { rpLists.Add(new ReportParameter("nts", new E2NEngine().InWords(gTotalText.Text.ToString()))); }catch (Exception ex) { Console.WriteLine(ex.ToString()); }
                rpLists.Add(new ReportParameter("header_", BillHeader));
                rpLists.Add(new ReportParameter("footer_", BillFooter));

                rViewer.LocalReport.SetParameters(rpLists);
                System.Drawing.Printing.PageSettings pSetting = new System.Drawing.Printing.PageSettings();
                pSetting.Margins.Top    = 0;
                pSetting.Margins.Bottom = 0;
                pSetting.Margins.Left   = 0;
                pSetting.Margins.Right  = 0;
                rViewer.SetPageSettings(pSetting);
                rViewer.ZoomMode = ZoomMode.FullPage;
                rViewer.RefreshReport();
                rForm.MdiParent = MainForm.mForm;
                rForm.Show();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
            public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs)
            {
                global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
                global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
                MainDataset ds = new MainDataset();

                global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
                any1.Namespace       = "http://www.w3.org/2001/XMLSchema";
                any1.MinOccurs       = new decimal(0);
                any1.MaxOccurs       = decimal.MaxValue;
                any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any1);
                global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
                any2.Namespace       = "urn:schemas-microsoft-com:xml-diffgram-v1";
                any2.MinOccurs       = new decimal(1);
                any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any2);
                global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute1.Name       = "namespace";
                attribute1.FixedValue = ds.Namespace;
                type.Attributes.Add(attribute1);
                global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute2.Name       = "tableTypeName";
                attribute2.FixedValue = "HospitalDDataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
                if (xs.Contains(dsSchema.TargetNamespace))
                {
                    global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                    global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                    try {
                        global::System.Xml.Schema.XmlSchema schema = null;
                        dsSchema.Write(s1);
                        for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                        {
                            schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                            s2.SetLength(0);
                            schema.Write(s2);
                            if ((s1.Length == s2.Length))
                            {
                                s1.Position = 0;
                                s2.Position = 0;
                                for (; ((s1.Position != s1.Length) &&
                                        (s1.ReadByte() == s2.ReadByte()));)
                                {
                                    ;
                                }
                                if ((s1.Position == s1.Length))
                                {
                                    return(type);
                                }
                            }
                        }
                    }
                    finally {
                        if ((s1 != null))
                        {
                            s1.Close();
                        }
                        if ((s2 != null))
                        {
                            s2.Close();
                        }
                    }
                }
                xs.Add(dsSchema);
                return(type);
            }