Automatic Form Fill in

  • Thread starter Thread starter Anil Gupte
  • Start date Start date
A

Anil Gupte

I am playing a Windows Media File which is protected by their DRM. I want
to be able to automatically fill in the form asking for payment with my
saved parameters. Is there any way to do this? Note, this is not on the
web - this is a desktop app that has an embedded player or using
mciSendString to play the file.

Thanx in advance,
Anil Gupte
www.keeninc.net
www.icinema.com
 
Anil Gupte said:
I am playing a Windows Media File which is protected by their DRM. I want
to be able to automatically fill in the form asking for payment with my
saved parameters. Is there any way to do this? Note, this is not on the
web - this is a desktop app that has an embedded player or using
mciSendString to play the file.

I know this is OT, but I've been very happy with my fingerprint reader
filling in stuff like this for me:
http://www.microsoft.com/hardware/mouseandkeyboard/productdetails.aspx?pid=036
 
That is interesting, but of course, I am looking for code.

I wonder if it is Thanxgiving weekend, or is it not possible to do what I
want?
 
So you have a Windows form and you have the user fill
stuff in, and you want to save the settings, and then
use them again later? Is that what you're looking for?
Or are you wanting information on how to get the tagging
info out of the audio file?

What version of VB are you using?

Robin S.
----------------------------
 
Kinda, yes. In fact, I will use standard values that I am saving in a
database. I will read the database based on the users profile and just
fillin the form. I am using Visual Basic.Net 2003

Thanx,
 
So you're looking for help on reading the info from the database
and then writing it back?

Robin S.
----------------------------------
 
No I am looking for help in filling in the form. It does not matter where
the data comes from.
 
OK, I see where the confusion is. When I say "Form" I don't mean a form as
in the Visual Studio IDE. I mean a resulting form which the user sees. In
other words, user double-clicks on a file to play on their hard-disk. The
security on the file pops up a form requesting user to fill-in their login
name and password (and perhaps a credit card number). I want to be able to
fill in these details automatically, so the user does not even know a form
came up.

Hope that clarifies it.
 
Antil,

If you write everything in the load event of the form, and than in that
me.close a form will not show up.

Cor
 
But the form is not in my control. The form has been created as part of the
DRM of the file. It pops up when the file is asked to be played. All I can
do is fill it in (sort of simulating keystrokes would do the trick).
 
Back
Top