Take A Screen Shot Of Full Code From Visual Studio Single File?
Mar 21, 2012I want to take a screen shot of full code from visual studio single file. is it possible?
View 3 RepliesI want to take a screen shot of full code from visual studio single file. is it possible?
View 3 Replieshow do I post a screen shot in my thread. I have save visual studio screen shot in my document. but I don't know how to post it.
View 1 RepliesVisual Studio 2008 (vb.net)I made simple anivirus but when I make Full scan by this code:
FolderBrowserDialog1.SelectedPath = ("C:")
'first scan:************************************
Try
[code]....
I am just making the transition from VBA to full on VB net 4 using Visual studio 2010. I think I have the basics down but am struggling with learning the commands for windows/filesystem manipulation. The problem is as follows I am creating my first program - the aim is to accept a root directory, then go through each sub directory in that location and delete the contents of any files whilst retaining the folder (hope that makes sense!)
[Code]...
Is it possible to get access to my VB code if I have the solution files on a USB hub but no access to Visual Studio? Can I open them up in Notepad?
View 1 Repliesthe code for making a tabed web browser(using tabcontrol) fullscreen
View 1 RepliesHow do you view the code from a .exe application file that was created using Visual Studio?There are several applications of which codes I want to see to understand how the application was created to increase my understanding of VB.
View 4 RepliesI've inherited a large Visual Basic project that has a number of "frames" (obviously, it came from Visual Basic 6.0) which are now GroupBoxes. They all cover the entire form. The program chooses which one to display during execution. That all works fine.
Is there a way to switch between them for display in Visual Studio designer? Now it's displaying only the last one added, and I have to go to the code rather than Toolbox to make changes to all the ones behind the top one.
I'm maintaining a WinForms application which was not written using any development patters conducive to localizing the classes in the project which were not directly associated with forms, or the code-behind partials of the forms.Thus, there is MessageBox() code with English text in it in almost every code file. I'd like to find a tool which will "scrape" those strings from the code, insert the strings in a resource file, and substitute a call to the resource with the substituted string in a comment.
View 4 RepliesI need the code for saving the link your on while browsing, and a code for a button, so when you click on it it shows the html code of the website in notepad or something (source code).I also need a code for Full Screen.
View 1 RepliesI'm running Visual Studio 2010 on a terminal server, and have been, with relatively few problems, for some time. This morning I fired up my PC and over the UK's long weekend, the following issue seems to have developed.I've got a bunch of projects (but not all of my projects, and not all of the projects in a given solution) complaining that a particular file (which does not exist on the computer) cannot be opened, and so those projects will not compile anymore. Here's the error:
Error 31 Unable to open module file'C:Users[username]AppDataLocalTemp2.NETFramework,Version=v4.0.AssemblyAttributes.vb':
System Error &H80070003&
I could simply copy the file into that directory and be done with it, I'm pretty sure that will work,EDIT: Okay, now things have gotten to a whole new level of weird. I've rebooted the server, I get the same error message, only now the file it is asking for exists and can be opened in Visual Studio with no problems. another part of the IDE still insists that it's unable to open the module file.
EDIT 2: Can't delete the file because it claims to be open in another program, but I've logged off and logged on again, and there shouldn't be anything accessing it.
EDIT 3: Because there's a wall of comments below his answer, I'll mention here that Jared's suggestion to delete the SUO file for the solutions having the problem (not files specifically to do with any of the problem projects, strangely) was what solved this, eventually.
I am using Visual Basic under Visual Studio 2010 Professional and I selected .NET Framework 4 from the New Project Screen. The program will plot Strange Attractors and I need to set and/or clear pixels.I delcared the following
Declare
Function
SetPixel Lib
"gdi32"
[code]....
I can set pixels by using the following code, where intX and intY ade dimensioned as integer and &HFF00 is the Hexadecimal for red.
SetPixel(hDC, intX, intY, &HFF00)
After I finish plotting all the points I want to clear the screen back to all black or white or any predifined color. I was able to do this in earlier versions of Visual basic by using "CLS" but this is not available in the current version. how to clear the screen? Should I use one of the earlier versions (.NET Framework2.0, .NET Framework 3.0, etc, etc)?
I have made quite a nice and tidy little game. Its based around space invaders and works quite well. however because i have finished my college project almost 2 weeks ahead of the assignments release date, my tutor has asked me to tweak my project and make it better.So far i have added a full main menu to the game and a full splash screen. I would like to add in a section for recorded high scores but have no idea how to attempt this at all.
View 3 RepliesHow do i create a Splash Screen for a vb.net program? I want to make a visual that will come up before the programs starts and after it finishes in this possible?
View 1 RepliesI wish to turn on the Single Instance Application choice in Visual Studio 2008 properties. To do so, I must choose "Enable Application Framework". When I do that, my ONLY choice is to choose a Startup Form, not a Startup object. This makes no sense to me. I have a tray application, and I check to see which form I should load, a logon form, or the main form. But since I am forced to choose a startup form, I MUST load the logon or main form to begin with. But I don't want to. I want startup code to determine which one to load first. So then I am playing with making the OTHER form invisible, even if the startup form, but that is a mess.
View 4 RepliesI would like to take a screen shot and save it in a sub folder in the main folder the application opened from for example C:/~/Application path/Screen shots/ I am using Visual basic 2005.
View 7 RepliesHaving an issue with a Datagridview that I am trying to create. What I need is for not only column headers but row headers. If you are not sure what I mean, take a look at this image;
[Code]...
Notice how the screen shot has a column and row headers? Now I do not need the "view selector". To make matters worse I need to have two row headers. Kind of like this;
[Code]...
What i want to make is a 1 button screen shot recorder, i have a picture what what i optimally want that was created on vb6. Edit: Ok this is what i want, after thinking about it i realized how it should be done.
Form 1 - initial screen capture button and send to in form2
Form 2 - view picture with save button imagebox
so i know how so take and save a screen shot, what i need to know is how to get it the imagebox and have form2 automatically pop up. What i have so far. [Code]
I have this cod to take a picture of this location
[Code]...
but it uses the edge of my screen as 0,0 how could i make 0,0 the edge of the application. Edit: ALl i know to do was copyfromscreen butthat uses the screen
Basiclly i want a button that takes a screen capture of form1 then automaticly opens up a picture box in Form4 for example. Problem: The picture box in form 4 will not display the screen capture that got taken in form 1.
Dim bounds As Rectangle
Dim screenshot As System.Drawing.Bitmap
Dim graph As Graphics
[code].....
i have made an application which will capture screen shot and frequently will saves in word doc autmatically. but it will take whole screen.now my req is to take snap particular area of the screen selected by mouse.
View 5 RepliesOn my program I am making a web browser and I want it to take screen shots of a web browser every X seconds. (X = any amount of seconds that the user can type in into a text box.) Then can it be saved to any location on the computer that the user can pick?
View 1 Replieshow would i take a screenshot like 100,100 around the cursor like taking a screenshot and the cursor positon is in the middle of it and its 100,100 around it
View 7 RepliesDoes anyone know how to take screen shot in a rectangle? And save it as a bitmap?
View 2 Replieshow to send a message to another computer in my companys network using visual studio 2008...I would like to be able to list all the computer names on the network and select certain ones and send them a message that would pop up on their screen
View 3 RepliesMy question maybe not be very clear, but I just want to know how this process is called or references needed to create something similar, so I can investigate on my own ( but if you have code is welcome.Basically I have 2 desktop programs ( A and B). For A, I do not have the source code, for B I do.What I need is to create some service/program that after a screen pops up from program A, automatically runs B. IN other words, capture the moment a specific screen is shown in A and execute B.
My real life scenario is that I have a very basic POS where I can't collect customer demographics ( zip code, etc), so I created a second application to capture that but my cashiers are always forgetting to run the program and I need to find a way to run it after a screen is shown ( let's say the "Change Due" in the POS, so they don't forget to run it.
I did a search on capturing screen shots in vb.net amd I was wondering if there is a straight forward way to capture the active window? Or do I need to first get the handle of the active window, get the position and size and then capture it? I do not want to use any type of sendkeys method or use the clipboard. I want to save it to jpg format.
View 3 RepliesI am trying to create a Screen Shot Logger. Anyone knows the code on taking a print screen if a click a button and it will be save as c:Fileimage.jpg
View 1 Repliesim trying to create a screen shot manager that opens up whenever the user hits the print screen key
i need it to be global so the event fires no matter what window has focus
What Kind of tools.Look like a tree view this my screen shot
Then when I click the Quick Launce: