Pass Data Between Webpage And VB Application?

Oct 17, 2011

I am developing an application for internal use in our company. The purpose of this application is for document imaging. What we are wanting to do is print a barcode label to attach to documents so that when they are scanned in a piece of software such as vfiler will be able to read the barcodes and know how to file them.The main focus is our ERP system which is web based (PHP). We are wanting to modify the code to allow the user to print the barcode label immediately once they enter an order or PO. I have access to the source code for the ERP web pages. I don't know of any way to make a web page print to a printer without displaying the printer select dialog. So, I decided that I wanted to try and create a VB application that would do the printing of the barcodes. This would allow me to bypass the the printer select dialog.

Now for the question. Is there any way to have a web page (PHP) running on the server call a VB app to perform a task? So, if I had a button on the webpage and the user clicked it, that button would somehow send the pertinent information (Order number) to the VB app and the VB app would print the barcode. The VB app will always be running on the machine. The label printers will be Zebra USB label printers on each person's machine.

View 2 Replies


ADVERTISEMENT

Pass Data To Different Application?

Feb 3, 2009

I'm sure this is possible but I've got no clue of what I'm looking for to even start to learn this. Basically I want to create a form that can load data from one software application and feed it to another.

Is it possible to change settings in other forms by another piece of software like if there was a flag = True and I wanted to change it to flag = False or instead of loading Dim processorID As String = String.Empty I can input Dim processorID As String = 1234

View 8 Replies

Pass Data Application To Application

Aug 15, 2009

I was wondering if it was possible to pass data from one vb.net application to another vb.net application? If yes, how is this done?

View 5 Replies

Pass Data Between BLL And UI In 3-layer (single Tier) Application?

Dec 4, 2009

I am a fairly rookie programmer who is trying to learn the basics of n-layered architecture (DAL, BLL, UI). The application I am programming is a single tier, 3-layer application written in VB.NET (.Net 3.5). Layers as follows:

DAL
BLL
UI
COMMON - contains DTO's right now.

I am having trouble determining what to pass between my BLL and UI. My instinct tells me that I should only pass data to the UI, and not the full business object from the BLL. Consider two scenarios:

1) Pass the BO directly from BLL to UI. This exposes BO methods and allows the UI direct access to the BO, which seems bad.

2) Pass only the pertinent data from the BO to the UI. For instance, a customer has a Name and Address. This data is really what we want to show/edit in the UI, so we would only return that data to the UI instead of the full BO. The UI would then call to the BLL to update a specific BO.

I am inclined to use #2, but I don't know the best way to implement it. The way I have it programmed now, if I only return data from the BLL, all references to my BO's will be lost and the GC will claim them. Based on this, I have some questions:

1) Should I keep business objects alive between calls to the BLL? The alternative is to re-create them every time I pass data through the BLL, which seems wrong.

2) What is the best way to keep a BO alive in a single tier architecture (how to hold a reference if we dont pass it to the UI?)

3) How do n-tier applications do this? Do they keep the BO's alive in the BLL and wait for an update from the UI? Doesn't this require a lot of "book keeping" in the BLL to make sure BO's are released when they are no longer needed?

View 2 Replies

Pass Data To Dialog - Manipulate And Pass Back?

Jan 15, 2010

Just started VB programming this week and have found a wealth of information about what I'm trying to do. Problem is, some of it is more complete than others.Here's what I'm trying to do:In Form1 (my main form), I want to instantiate a class that contains a couple of properties (speed setpoint and position setpoint). When I click a button, I want to pass this data to Form2 and populate two textboxes on Form2 with the properties of this object. I want to manipulate the property values on Form2 and click an OK button which closes the dialog and returns the manipulated data, updating the property values of the object. Here's the algorithm I'm following:1) On Form1, instantiate the class2) On Form1's "Pass Data" button click event handler, instantiate a Form2 object and invoke the ShowDialog method, passing the object as a parameter.

3) On Form2, overload the ShowDialog method to accept the object as a parameter and modify the method so that it returns the manipulated class data.4) On Form2, in the ShowDialog method, populate the textboxes with the class data that was passed in.Here's where I get stuck. If I press the OK button on Form2 (DialogResult.OK), it returns me to Form1, but what hook do I have in Form1 to receive the manipulated class data that the ShowDialog method is returning?Here's an example of what I'm thinking about:

Code:
Public Class Form1
Dim clsController1 As New MotionController

[code].....

I'm sure it's probably a very elementary question, but every explanation I've found seems to be incomplete.

View 2 Replies

Pass Current Web Credentials From Asp.net Web Application To Windows Client Application

Nov 20, 2011

I'm developing a web application that requires the user to log in using forms authentication. inside the webpage you need to download a desktop application that requires to login to the same system too. Is there a way to transfer the current logged credentials from the web application to the windows desktop application without need to login again?. Both applications shares a Login object from an vb.net interface.I tried to save the IP address in the Database but that don't work for me because the website needs to be accessed inside and/or outside of the company and the user cannot login twice in different machines.

View 2 Replies

VS 2008 Sending Data To A Webpage Via POST, Data Not Getting There

Jun 16, 2010

I've code this code below:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim hwrRequest As HttpWebRequest = HttpWebRequest.Create("http://www.example.com/web-service.php")

[Code]....

The MsgBox() at the end shows the response, which as I've added to my script, echos the result from the $user and $pass variables which are supposed to retrieve those details being written to the stream above, but they show up empty.

I'm retrieving those values by doing: $user = $_POST["user"]; $pass = $_POST["pass"];

View 9 Replies

Pass Data From Datagridview To Textbox And Append New Data To The Next Line?

Sep 13, 2010

I am trying to click on certain rows in a datagridview and have the information in the rows sent to a textbox. It does not append each row to the textbox though, which is what I want it to do. it just replaces it with the row I click on. What's wrong with my code. I have tried cell click too.

Private Sub dgProducts_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles dgProducts.Click
Dim i As Integer

[Code]....

View 2 Replies

Pass Data From VB 2008 Project To Data Fields Set In Word?

Dec 10, 2009

I�d like to pass data from my VB 2008 project to data fields set in Word. Can it be done and if so

View 10 Replies

Application To Be Notified When A Webpage Changes?

Dec 18, 2010

I'm trying to write an application that will notify me when a webpage changes. I used a web browser form and it opens the main website fine. You have to click a submit button to get to the page that I need to track. After this page opens I copy the text I want to track into an input box and then I need to refresh the page every minute or so to see if the text changes.The problem I am having is I cannot get the page to refresh properly. I send the WebBrowser1.Refresh() command but my ap stops responding, but only sometimes. If the refresh works then I get a popup window where I need to send [enter] to get the page to

View 7 Replies

.net - Updating A Webpage From A Desktop Application?

Aug 20, 2011

've written a desktop application in VB.net which gets data from numerous serial devices and graphs it in a windows form. What I'd like to do enable remote users to view this data remotely from a web browser.

So, is it possible to add a webpage to a desktop application which could be dynamically updated from from my windows app or do I have to rewrite the entire application in asp, flex or silverlight so it can be viewed remotely via a web browser?I'm not familiar with asp flex or silverlight and have only developed desktop apps using vb.net 2010 on win7 and XP.

View 5 Replies

C# - Launch A Windows Application From A Webpage?

Mar 8, 2011

We have a company intranet and the powers that be think it would be nice to have a collection of icons/links representing the applications that most reps use (Outlook, Excel, few other apps).

The idea would be that if the application is installed, clicking the link/icon would launch the application on the client machine.

Anyone ever had a requirement like that and been successful implementing it?

View 3 Replies

Updating A Webpage From A Desktop Application?

Aug 10, 2010

I need to calculate in hours how much time has elapsed from when a record was created to the current time. The hard part is I need to exclude weekend times from this. I have been working on this for quite a while and I am just lost. Here is what I have so far.

[code]...

What algorithm in VB.NET would best suit this calculation?

View 3 Replies

VS 2008 Application Reading Webpage?

Jun 21, 2009

t possible to do this easily as im not great at VB I have a simple webbrowser open when i click a menu item, and when it loads it goes to a text page on a online server i have (ends in .txt) which just has some text on, is it possible for me to add a button which when i press it, it searches the page for a certain number/word, then opens a message box with some text in relation to the number/text, or is this not possible with a webpage.

View 5 Replies

VS 2008 Application WebPage Interaction?

Nov 13, 2009

What I'd like to do is when a user clicks a button in my windows form application, it launches IE etc and opens webpage, sends the username/password stored on the pc and logins into the main page.Some background-the password will be stored in a txt file on the pc in encrypted form-the webpage am login into is a aspx company intranet page-security is really not a major issue as everything is internal-the main page of the intranet page is just two textboxes asking for username/password before going any further. There is a button to login on the webpageIs what am trying to do possible as I really do not have understanding of how the login page works underneath or for that matter much about HTTP post requests etc

View 7 Replies

Read HTML From A Webpage And Interact With It As Own In A WPF Application?

Apr 24, 2011

I've search numerous hours, but I haven't been able to find the appropriate solution. What I want to do: Get the html of a certain webpage (Lets say in this case url...this html within my wpf application, so that you can see the content of the page you requested. Then I want to be able to trigger events on the html that has been loaded from the URL. Like I want you to be able to click on a certain node in the HTML and I want to be able to link this node to a certain value. Basically a crawler application that let's you request a page, see the page in a control and allows you to click in the loaded HTML and link values to predefined values you set. So basically I want to be able to get a webpage displayed within my application and be able to trigger events on the html (For example a click on the html which would need me to know on what node you clicked in the html, or for example be able to edit the html by clicking in it).

View 1 Replies

Organize Application Are Going To Be Able To Separate Every Program / Webpage (over 400) From Each Other

Oct 18, 2010

We have an ASP classic ERP (very large application) that we want to rewrite using ASP.NET. I am looking for a way to organize the application so we are going to be able to separate every program / webpage (over 400) from each other. Every program needs to be independent because many developers will work on the project at the same time.Visual Studio seems to make a DLL for every assembly so I was wondering if it's a good idea to make a huge solution with one project per DLL.[code]This way, we would be able to deploy every program separately without altering the others. We would also have over a thousand DLL to manage...

View 3 Replies

VS 2010 Show Webpage In A Windows Application?

Sep 16, 2010

Is there a .Net control I can use to display a web page from a vb.Net windows forms application?

I am writing an app that will produce a slide show from a specified directory. The idea is it will ideally include Images, Video clips (via Windows Media), URL's (held in a text file), PDF documents and power point presentations.

Images and media clips aren't an issue. At present I am looking at displaying specified web pages. I am aware that I can use

System.Diagnostics.Process.Start("http://webinta/Pages/Home.htm"

to open a browser window, but I want control of that as after a specified amount of time it needs to close so I can display the next image (media clip, url etc).

View 2 Replies

Xml - Read A Value From An Application's App.config File From A Asp.net Webpage?

Feb 19, 2012

Basically i have a .net application that has a directory path stored in the app.config file. this directory path outputs xml files that will be read by an asp.net web page.

Is there any way i can get the asp.net web page to read the directory path stored in the app.config file? Should i look to use the web.config file at all?

View 1 Replies

Application That Measure Response And Loading Time Of Webpage

Sep 6, 2009

I like to make an console application to measure the time it takes to fully load a web page, what's the best approach to do that? The purpose of this small app is to monitor some pages in a website, in a predetermined interval, in order to be able to know beforehand if something is going wrong with the webserver or the database server. It would be nice to be able to measure the time it takes to fully load the the page (images, css, javascript, etc). I have some code but I is not measuring the fully page.

Dim sw As New System.Diagnostics.Stopwatch
Dim req As System.Net.HttpWebRequest = CType(HttpWebRequest.Create("[URL]"), HttpWebRequest)
sw.Start()
Dim res As System.Net.HttpWebResponse = CType(req.GetResponse(), HttpWebResponse)
sw.Stop()
Dim timeToLoad As TimeSpan = sw.Elapsed

View 8 Replies

Developing An Application That Constantly Checks A Particular Webpage For Changes In The Page?

Feb 25, 2010

im developing an application that constantly checks a particular webpage for changes in the page. im using the webbrowser.documenttext to read changes in the source, its working great. until when i tried to use webbrowser.refresh(), an ugly popup that says. "To display the webpage again, Internet Explorer needs to resend the information you've previously submitted.If you were making a purchase, you should click Cancel to avoid a duplicate transaction. Otherwise, click Retry to display the webpage again."

View 2 Replies

Url - Open Webpage (or Snapshot Of Webpage) Into Another Webpage

Mar 10, 2010

i have an aspx page with vb.net back end. in that page i get names and url's from the database depending on different conditions. My requirement is that when i get the url, the code should then use that url and have that webpage in a small preview form on my existing aspx page. so basically i have a table as follows -

[Code]...

View 1 Replies

How To Pass Parameters To Another Running Application

Aug 18, 2010

we have an old vb6 application (let's call it app-vb6) that basically handles database searches. now i created a new .net application (app-dotnet) that can use the database information to do something else.

what i want to do is to be able to run app-dotnet using information obtained from app-vb6 (which would send something like a command line with a few parameters). but i don't know how to make only one single instance of the app-dotnet to refresh information every time app-vb6 calls it. this link [URL].. seems to have the answer but i could not follow it since it is VC.

View 2 Replies

Pass Variables To A COM Object From Application?

Aug 10, 2010

I am writting a VB .net (3.5) applivcation which references a COM object. I can call methods on the COM object fine provided that they don't require any variables to be passed. I have been told that you can only pass a maximum of one varaible to a COM object, I really don't believe that it true

for example
objsession.connect()
works fine
but

[Code]...

View 6 Replies

VS 2008 Safety Of The Log And Pass In Application?

May 11, 2010

My application works with the sql database. It always connect to the databse using the same login and password written earlier in the application code.I just have a conncetion string with all that data inside.

I know that it is not the safiest way to do that. How to safely hold this thata inside of an application?

View 4 Replies

C# - Fetching Data From A Webpage?

Aug 24, 2011

Suppose the given picture*(consider the picture as a web page)* is a web page...i have saved this web page to my HDD...now i want to parse/copy data from a specific area from the web page and store it into the database accordingly. Is this possible?? I wanna know if this thing is possible??If yes then how??

View 2 Replies

Extract Data From A Webpage?

Mar 1, 2011

I have the following code to open a webpage:

Dim IE As Object
Dim x As Integer
Dim c As Variant

[code]....

The page that opens is in xml and in that xml there is the "page_count" that I need to pick out so I can tell my macro when to stop looping. I have dimmed it as "c" in the code above. Following is the XML.

<search>
<total_items>360</total_items>
<page_size>100</page_size>
<page_count>4</page_count>

Somehow I need c = "4", which is the "page_count". Does anyone know how I can pick out the "4" from the xml on my page?

View 2 Replies

Extract Data From Webpage?

May 15, 2012

Extract Data from Webpage?I have this code so far.[code]...

View 2 Replies

Importing CSV Data From Webpage?

Sep 30, 2009

I'm looking to pull data off of a webpage that gives the data in comma delimited values.

I want to pull that data off, and I'm sure I'll have to store it in an array.

View 2 Replies

Parse A Webpage And Get The Data?

Apr 18, 2009

I am trying to parse a webpage and need to get the data basically the string i am looking for in a webpage looks like thisSomeone lead me in the right direction in parsing the Stuff strings?

</b></a></td><td align="left" bgcolor="#F6F6F6">Stuff1</td></b></a></td><td align="left" bgcolor="#FFFFFF">Stuff2</td></b></a></td><td align="left" bgcolor="#F6F6F6">Stuff3</td></b></a></td><td align="left"

[Code].....

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved