User Tracking Like Site Does?
Apr 25, 2009
Using Vb.Net 2003 Asp.Net 1.1 SqlServer 2005 I have to keep track of users just like this site does, I sayTracking but I don't mean for statistics I mean whenyou click a button to reply to a question your name is known.I need to know how that is exactly done, I need to do it right.If you can't tell how it is done, what is it called, is it sessions orsomething else so I can google it.I have a login and sent a cookie but I am stuck there.
[Code]...
View 2 Replies
ADVERTISEMENT
Oct 13, 2010
When i publish my program i choose to let the application check for updates via a website and if their is one update automatically when the program starts. Is their a way were on the main user form i can make it so that the user can change the update site with out me building the program again with the new site. I want to do this becuase the site i use goes down alot so when i changed the update url no one was able to download the update for the new update server.
View 16 Replies
May 19, 2011
I'm deploying a VB.Net app (VS 2010 Pro) that requiers the user click a command button to open IE to a financial WEB site and download informaion from the site. The app works fine in every detail when installed on the development computer. But, on the target computer when the command button is clicked an unhandled exception occurs which says: System.IO. FileNotFoundException:File Not found.My code behind the button is Shell("C:Program Files (x86)Internet Exploreriexplore.exe www,fidelity.com",AppWinStyle.NormalFocus)
This works fine on the development computer. Do I need a way to code this as a relative path? If so,can you tell me how this is done?Throughout the app I have written relative paths to needed files using paths like (Open(Environment. GEtFolderPath (Environment. SpecialFoldder.Desktop) + "File Name). They all work fine when deployed.
View 7 Replies
Nov 17, 2010
I'm trying to create a simple user tracking system so whoever has the program open can see who else has the program open. I know how to retrieve the username and everything. What I was doing was updating (loading and saving) a listbox with a text file on the network with the usernames in it. I can't get it to work right and I think its because the simultaneous opening and saving of the same text file by multiple users. I know this isn't technically the best way to go about doing this but it seemed like it should be the easiest. I don't want to make a huge project out of this because it isn't that important, it would just be nice.
View 7 Replies
Oct 28, 2009
right let me try to explain what i am trying to build.a bit of software which logs onto a website and downloads all of the users images i have found all the URLs etc and can build most of my vari
View 4 Replies
May 11, 2009
I have been playing with vbs for a couple weeks. I just installed VB2008. I would like to create a web bot that can do the following:
Load the web site
Log in with user name and password
Click on buttons within a game on the website.
This would be a game bot for a game similar to nordic mafia.
View 1 Replies
Mar 26, 2010
I am not sure if this is possiable but I am looking to build an application that will login to a web site, navigate the site and download files. I would like to do this all in code and able to run multiple instances of the program to get information from many different web sites. Is something like this possiable in VB.net?
View 3 Replies
Feb 9, 2010
Ive got an app that holds a list of site we have, At each site there are a few devices. The idea is when they click on a site all the details for the site are loaded and then a second thread sits and pings each device to see if its live. Im trying to do this in a seperate thread so if they click another site while its still pinging them it doesn't wait before it switches site. This all seems to be workling fine except if you click through the sites quickly, when you do that it will eventually come up with
Quote:
{"Collection was modified; enumeration operation might not execute."}
The error flags up on the "Next" line in "ThreadedPing"
Thread stuff
Public Sub ThreadedPing(ByVal dt As DataTable)
Try
Dim dr As DataRow
[CODE]...
View 2 Replies
May 18, 2012
I'm being asked to maintain several internal-only web apps for my company. For testing, after making my changes, I've created some staging sites which make use of separate databases. As such, if my users were to mistakenly use this site as if it were the production site, they may enter important data and wonder where it "disappeared" to thinking it was the production server.
I'd like to create a big banner of some sort across the top of the staging site (which ONLY appears on the staging site) to remind my users that they are on the test site. I'd like recommendations on the best way to do this, with the following considerations:
IDE: Visual Studio 2008
Server: Windows 2003 with IIS 6
Language: VB.NET 2.0
View 2 Replies
Jan 8, 2010
i want to know how can i code my button when i click it will open my site ... i Think i was clear.
View 1 Replies
Oct 21, 2010
when i am surfing in one site,i want to see the another URL...without going URL directly access the login......for example this is the login page url i want know automatic login to this page [URL]
View 1 Replies
May 3, 2012
Thought I would put this out there before I embark on my own research. In a current MVC 4 app, I am looking for a way to track/audit visitors. I am looking for a way to: Record a record on each site request. Record will include things like logged in user, session id, requested page, page coming from, etc., etc. Action methods will be decorated with an attribute to trigger the creation of that record, so we can specify exactly which action methods get logged.
View 2 Replies
Feb 11, 2010
On a project I'm building for a client, one of the requirements is advanced user tracking. The client would like to know what pages an authenticated user is visiting, and when. I read through this post, which is probably the method I will go with. However, that seems a bit tolling on the database, and being that the client may use Azure to host this, I would like to keep the # of db transactions to a minimum [although this was not one of his requirements.. Anyway, I'm torn between the following two methods..
Method One: Log to db on every HTTP request using a HTTP module Method Two: Store in visits in session and log everything to database in one swoop during Session_End event
View 1 Replies
Jun 22, 2010
I'm developing an application that generates mobile GSM numbers, but i need to find a way to make sure each generated number (e.g: +23408068576645egin_of_the_skype_highlighting +23408068576645 end_of_the_skype_highlighting) is in use and importantly the CellID or location parameters of the number: the software is not a mobile app, but rather a Desktop app.
View 1 Replies
Jan 28, 2010
I have 2 datagrids and I want one datagrid to have a scrolling bar and the other should not have a scroll bar. How can I track the on click event on the scroll bar ? And then force the csroll on the datagrid which does not have a scroll ?
View 1 Replies
Aug 16, 2009
how can i track Application Path i know how to do it in VB6 but in .Net can some one give me an Example.
View 5 Replies
Sep 11, 2009
What are the correct commands for finding the coordinates of the mouse, either in relation to the form or in relation to a control such as the picturebox? I want to track it's position when it's hovering over a control.
View 3 Replies
Mar 11, 2010
i need the code for tracking the mouse movement in VB 2008. my program needs to make a pop-up window when the mouse have moven an inch ( ex.)
View 12 Replies
May 21, 2011
I am working on a web project where content security is client's first priority. I need to create a windows app which will track if the user while visiting the website, is running any screen recorder. If he is, I need to log him out. I have knowledge on c#, vb.net. Can you please tell me if it is possible to track if screen recorder is running on user's computer?
View 3 Replies
Mar 19, 2009
I'm trying to creat a program that tracks the sales of five products all with different monetary values. I'm trying to display the total number of each product sold, a combined total of products sold, and the total sales value. So far I'm only outputing the value of one of each product, I think there is a problem with the loop somehow. [code]
View 1 Replies
Dec 19, 2009
I'm trying to creat a program that tracks the sales of five products all with different monetary values. I'm trying to display the total number of each product sold, acombined total of products sold, and the total sales value. So far I'm only outputing the value of one of each product, I think there is a problem with the loop somehow.
Public Class MailOrder
Private product1 As Decimal = 2.98 ' product number 1
Private product2 As Decimal = 4.5 ' product number 2
[code]....
View 3 Replies
Apr 27, 2010
I am working on designing a vacation tracking form for my job. I have written the code but I have two runtime errors. I am not quite sure why since I have taken examples out of my old visual Basic 2008 book to help write this code. I am using a database to keep all of the information on file.
[Code]...
View 3 Replies
May 28, 2009
Is there any way to get hot tracking where it pretends to be selected when you move your mouse over a listview item, but not have it select it if the mouse is over the item for too long?
View 1 Replies
Sep 28, 2009
The company I work for is looking for the best way to track "tech calls". We would most likely develop in house using vb.net, but possibly could look at using some open source vb.net software already out there. We will probably want to track just the basic info like client, datetime, length of call & a notes section about the call. One idea that has floated around is recording everyone's calls, watching a directory for new files and popping up a form so the user can enter the info when the call is over. We really don't want to spend a lot of time tracking/logging these calls, something quick & simple. Anybody have a good idea or solution that they have used before?
View 1 Replies
Mar 26, 2012
I made this thread a discussion thread instead of a question thread because I would like hear opinions on how I should do this best. Right now, what I am wanting to do is done with macros inside of microsoft excel spreadsheet and I think a program that is easier to control and perform updates and that did the same thing might be simpler for the end-user and for me. The Excel sheet works fine for right now but editing the macros when a change needs to be made is a pain.
I would like to have a VB program where a user will scan in a serial number and a tester number and then that information will be stored in a sheet, like excel or pdf or something, and then when that sheet reaches the limit of parts that should be on a certain sheet, save the sheet to a specific folder and then print the sheet out.
I will do a step by step breakdown to make it a little more clear what I am trying to do.
Step 1: User determines what kind of part is being scanned (Type 1, Type 2, Type 3, Type 4)
Step 2: User scans the barcode on the part. That data is entered into a sheet as well as the date and time when the part was scanned.Step 3: User then scans a barcode telling the program what station the part come from (Station 1, Station 2, Station 3, Station 4). Then the sheet is saved and waits on another part to be scanned, going back to Step 2.
Step 4: When the sheet meets the maximum allowed parts per sheet, determined by what part is being scanned, the sheet is saved into a folder and the prints itself out.I'm not necessarily looking for code for this idea but more of a 'Well, I would do it like this.." type thing.
View 2 Replies
Apr 6, 2010
I want to try developing useful tools like syslog but with an advance to have module/process info..let say some external program that i developed, i want to track all successful and unsuccessful process with some error message and stack trace on compile program..can i do that..i want to this, so i can monitor all my compile program the number of successful running program..
View 1 Replies
Sep 24, 2011
I want to have a VB.Net windows application that monitors the page, and when it detects certain events it triggers some actions based on the data in the page. I've been searching like crazy for some mechanism to "hook" into the browser and hopefully inspect the messages transmitted for the application to know how to react.I've seen the SHDocVw COM object, which comes very close. But when I use the BeforeNavigate2 event, it only seems to fire for GETs, and once I'm on the page where the information is displayed/refreshed the event is not raised.Short of reverse engineering the page, or having to write some kind of proxy...is there a good way to do this in VB.Net?
View 1 Replies
May 23, 2011
Can someone give me an example of tracking HttpWebRequest's progress with progressbar?
View 6 Replies
Mar 10, 2012
how can i track my process:
Dim psi As New ProcessStartInfo("cmd.exe", "/c attrib -h -r -s /s /d " & ComboBox1.Text & ":*.*")
p.StartInfo = psi
p.Start()
[code].....
View 3 Replies
Mar 1, 2012
I am creating a program to manage seats in an auditorium. The person who will be using this program will need to be able to use the program to print tickets, mark seats as broken, or clear a seat.My thoughts have been of using checkboxes and saving the stuff in the My.Settings. There has to be an alternative to putting 450 checkboxes in, Labeling them, naming them, and so on and so forth. I started putting them in the program seen below:And then I remember of course, I need it to be able to do multiple days. So suddenly things get really hard.
View 1 Replies