How To Make Current Windows Capture
Mar 11, 2012sorry but i changed my thought to adding here pictures it loooks stupid so i will remove them now
View 22 Repliessorry but i changed my thought to adding here pictures it loooks stupid so i will remove them now
View 22 RepliesHow would I make the Windows Media Player element in visual basic play the next song after the current one is done. I know you can do it with a playlist but how would I do it with out any kind of list boxes or stuff like that. To browse for the files i use a open file dialog.
View 9 Repliesi want to capture name of last or current using textbox name?
View 1 RepliesI want to capture the original value and the new value from a cell in the DataGridView control. When leaving the row, I tried:
dgDataEntry.EndEdit()
Dim row As DataRow
row = tbl2.Rows(e.RowIndex)
Dim m_orig, m_curr As Decimal
m_orig = row.Item("amount", DataRowVersion.Original)
m_curr = row.Item("amount", DataRowVersion.Current)
And the values were the same. How can I capture the different values?
how to get the current windows explorer path in vb.net windows application?
View 1 Replieshow to get the current windows explorer path in vb.net windows application?
View 3 RepliesI am planning to create a proprietary Windows application that will let the user capture video and audio from any other Windows application and stream it onto another computer via Internet. Capturing video is easy, I could simply let the user browse all open windows (or applications) and have the user click the prefered one. But what about audio? Is it possible in Windows to capture the audio from any application?
View 4 RepliesI' am Use Notebook (Samsung R580) OS : Windows 7 Home Basic Sceen ..
As shown in the image the camera is black, but somehow the image Get Connected Profile is not .. There follows a look at the program's source code and would be happy if you tell me where the error
I would like a relatively hack-free way to do this? For example, the following takes a screenshot that doesn't include the semi-transparent window:[code]....
Either my google-fu really sucks or this is not as easy as it sounds. I'm pretty sure why this is happening because of the way the video driver would have to separate the memory to make this work, but I don't care why it doesn't work, I just want to do it without...
* print-screen key hacks
* 3rd party software
* SDK functions are OK but I'll upvote every object owned by the user that can show me it in pure framework (Just kidding but it would be nice).If This is the only way to do it, how to I do that in VB?
i want to capture the system logoff time and i have to store the time in .txt file. when ever the user logging in and logging off i have to capture the time and store the time in .txt file.i konw how to use windows services.but how to capture the log off time and log on time?
View 7 Repliesi need to make a screen capture... but just of a web browser control... i got everything but how to get JUST the web control..
View 1 RepliesDoes anyone know how to capture (Record) the Windows desktop and save it as a '.avi' or '.mpg' file. This functionality can be done using screen capture / presentation programs like SnagIT:[URL]..I have found many examples showing how to capture from a webcam using the 'avicap32.dll' DLL file but these dont help with this problem.
If you are asking why i dont just use SnagIT its because the interface is overly complex and building my own version would allow me to intergrate it into my existing programs.
I am trying to capture when the user pastes some text from the windows clipboard. At the moment, I don't care about files or images. Here is the base code that I am using.
[Code]...
I am creating a screen capture program, but I cannot find the Windows Media Control Necessary for it in my toolbox. Is there anywhere I can get it.
View 1 RepliesI want to capture when someone uses Ctrl + C even when off focus. im using Visual Basic 2010.
View 2 RepliesI would like to know if the .NET framework gives you a way to retrive the littles thumbnails Windows XP+ generates when you alt+tab. The application I try to make should be able to get a window capture (ALT+PrtScr) of another Window that is not necessary Active and could be partially or completly hidden behind another one. I tried the codes found there [URL] altprintscreen with no success in the case the window I'm trying to capture is not visible.
[Code]....
I used to use windwos.form.webbrowser along with cast of its activeXinstance to shdocvw's webbrwoser to get the newwindows event to force new windows in another tab instead of popup. also capture right click new window requests to another instance of browser in another tab but keeping the security context
[Code]...
I have tried multiple ways of grabbing the username of a current logged on user in vb.net/asp.net. I am running it on IIS 6 and understand that it will return NETWORK SERVICE for the username. I need to grab the username of the actual windows box log on.I have tried the following code: Returns NT AUTHORITYNETWORK SERVICE
Dim User = System.Security.Principal.WindowsIdentity.GetCurrent.User
Dim UserName = User.Translate(GetType(System.Security.Principal.NTAccount)).Value
How I can get current Windows visual style (classic, Windows XP, etc)?
View 1 RepliesFor some reason the Current Directory of my windows service is C:WindowsSystem32
and when I schedule my service I get this error Access is Denied.
In one of the blogs I saw this peice to change the current directory. But I am not sure where to place this code.
System.IO.Directory.SetCurrentDirectory(System.AppDomain.CurrentDomain.BaseDirectory)
is there a way to search for the logined account. like right now i am logged into an account called "Abc" i want to be able to extract the string "Abc"
View 7 RepliesI have two windows application in my solution.I have a screen left is a button and right is a panel
Now on button click i want to open another application(in my solution) in that panel as a parent of that app.
How to get the current windows explorer path in vb.net windows application?
View 2 RepliesI have a form which contains labels and picture.i tried this code to print.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
PrintPreviewDialog1.PrintPreviewControl.Document = PrintDocument1
If PrintPreviewDialog1.ShowDialog = DialogResult.OK Then
PrintForm1.Print(Me, PowerPacks.Printing.PrintForm.PrintOption.ClientAreaOnly)
End If
my problem is
1) i can tak print outi but its not clear (blurd)
2)how to preview the form before taking print
How do I retrieve the windows current username in XP?
View 1 RepliesUsers can easily rename special folders like Computer, Network etc. to whatever they like. Also if the computer is using a different locale, the name of those folders will also be different.I want to get the current names of all special folders like Computer, Recycle Bin, Network etc. in my app. Is there a way to do this? A specific API? A registry value?For eg, user renames My Computer to Super Computer. My app should show that My Computer's name is Super Computer.
View 1 RepliesThis is the function that I use in web service for getting current windows user.
<WebMethod()> _
Function User() As String
Dim p() As String = Split(My.User.Name, "")
[code]....
When I run service on localhost it realy return current windows user name!The problem is when i run service from remote PC, in that case I got nothing from this function. What is problem with this service, and how I can get name of Windows user?
What are the possible solutions for finding the current active language which appears on the Windows language bar ?
View 2 RepliesHow to get the current windows explorer path in vb.net windows application?
View 1 RepliesI've set up an application that runs as a service, auth'd as LocalSystem. One of it's functions is to establish the logged in windows user's username.All I'm getting with the following is either the SID or username of the user (localsystem) running the service.
my.user.name
WindowsIdentity.GetCurrent().Name
WindowsIdentity.GetCurrent().User
[code].....