Text In Code Windows Became Very Blur?
Sep 2, 2010
I do remember what I did but text in code windows became very blur.Another screens such as option, solution explorer are still very clear.How to fix it?I tried to reset to reset all setting but no luck.
View 18 Replies
ADVERTISEMENT
Jan 16, 2010
How can I make background window blur with code.just like when you open regedit in Vista or seven all background changes to black except the prompt window.I want to mimic this behavior but instead of just color black I want it to be the image of the background in blur view. How can I do this in VB 2008?
View 1 Replies
Jun 8, 2012
I want to have a partial class to manage my focus between radtextboxes when a user presses the enter key and I am looking for the telerik interpretation of this line of code tbs(i).KeyDown += New KeyEventHandler(AddressOf textBoxes_KeyDown)?
Partial Public Class MstFileTruck Inherits Form
Private tbs() As Telerik.WinControls.UI.RadTextBox
Public Sub New()
[code]....
View 1 Replies
Aug 6, 2009
I want to make my mainform become blur when a new form is showed.I dont want use opacity property because it can't make mainform darker.I mean opacity only change opacity of form.
View 3 Replies
Sep 1, 2009
the goofiest bloor function that exists in vb.net simillar to saying hello world!No blur hardness no sharp edges or any other settings everything should be default the easiest way to do it.
View 4 Replies
Aug 2, 2011
I have a login form and a Main Menu Form. I want that everytime I click Login (assuming that I'm in Main Menu Form) Main Menu Form will become blur then a small form for Login will pop up.
View 5 Replies
Dec 23, 2009
I tried using LockBits to blur images, since I heard it was faster, and there's no error, but there's no blur either. It doesn't do anything. The commented-out code is the code I had before using LockBits, and it works.
vb.net
Private Sub BlurImage(ByVal img As Bitmap, Optional ByVal radius As Integer = 3, Optional ByVal blur_bounds As Object = Nothing)
Dim bb As Rectangle
[Code]....
View 3 Replies
May 12, 2012
How to make a picture glow & blur even if the picture contains transparent color?
View 6 Replies
Sep 2, 2011
I'm using PrintForm which comes with PowerPack to print a form with a couple of Labels into it.But the letters appear a little blur and not clear at all, bad quality, I tried by increasing the size of the labels but the result was the same.Under the PrintForm parameters I only found one that could be relevant, the papersize but that doesn't helped too.
View 5 Replies
Jan 19, 2010
I'm porting code that I wrote for use in a Windows Forms application to a Windows Service, but for some reason, the code that worked in the Windows Forms application is now throwing errors in the Service
View 7 Replies
Jul 18, 2011
Dim wiaManager As WiaClass = Nothing ' WIA manager COM object
Dim wiaDevs As CollectionClass = Nothing ' WIA devices collection COM object
Dim wiaRoot As ItemClass = Nothing ' WIA root device COM object
Dim wiaPics As CollectionClass = Nothing ' WIA collection COM object[code]....
View 2 Replies
Oct 25, 2011
I have a VB.net project that i've published through a click once installation which was compiled in Windows XP the application contains a previous version of True DB grid which is not supported windows 7 so i'm trying to get my application to work in Windows 7 so that the true db grid and other such controls work without any issue. i tried compiling the code in x86 mode
View 2 Replies
Jan 18, 2012
I had a weird series of errors involving e.Graphics.DrawString() when painting a panel.I am using a barcode font [Code 128] with a library that converts text to the proper format for Barcode readers.That's fine, however, when I draw it to the panel, that's where things stop being fine:But, here's where things get funky. When I put it into a TextBox instead of drawing it via Graphics.DrawString(), everything is peachy:In fact, the TextBox one looks much better than the Graphics.DrawString() one! Am I doing something wrong?[code]
View 2 Replies
May 20, 2012
How can I change my code # to Code & in All the text files within a folder
View 10 Replies
Jan 16, 2012
Using VB Windows Form Application In Visual Studio,
View 2 Replies
Sep 21, 2010
I came to a company that already has a fully grown project... but coders that worked here before me didn't follow conventions and didn't use parametrized SQL queries... as a result there is over 1000 places in a very huge project that can possibly be vulnerable to SQL injection...
I need to find a solution that will automatically detect if there is an SQL injection in the code. So, for example there is a form which allows user to enter comments regarding a product, which will be sent to database on submit... how can we make sure that a user didn't enter a harmfull query instead of a normal text?
Is there any advanced code/regular expression/magic that can detect if this text contains a piece of SQL query instead of normal harmless text? I will accept any links, pieces of code in any language or even commercial software that will do that for me.
View 5 Replies
Oct 7, 2011
I'm trying to enter code into a button to save a text file from a text box.The text box is called txtEditor, I have created an open file button using the openFileDialog1 and have been successful with this I just can't get the saveFileDialog1 to work.
View 3 Replies
Nov 15, 2010
what is the code for sending IP via textbox1.text and button1.text
View 9 Replies
Sep 29, 2011
I have a TextBox and I want to allow VB syntax, but when I run the site and try to save the VB code to the database, I am getting an error. I believe the error has something to do with the VB code.I have put the httpRuntime requestValidationMode="2.0" setting in my web.config, and I've added validateRequest="false" in the directive at the top of the page, but it didn't resolve the issue.
View 1 Replies
Jul 18, 2011
Can i get text from a textbox and use that text for the second forms code?
View 1 Replies
Dec 24, 2009
I'm making a simple decoder. Type a message in the "message" text box and it spits out a code in the "code" text box. If you pop a code into the "code" text box it spits out the message in the "message" text box. Seems simple, right? Well here's my problem. I typed "The quick brown fox jumped over the lazy dog" to test it and it will put a lowercase "f" at the beginning, put letters that aren't supposed to be in there in there, and replace what should be upper case letters with lower case. I commented out the code for replacing symbols because it seemed to work fine before I put them in the code but still the same result. I checked over the code to see if I mixed stuff up. Like I accidentally put the replacement for a lower case "e" as the replacement for a lower case "h" but I can't find anything.
CODE:
View 8 Replies
Feb 14, 2010
I intend to create a button to run a specified windows shortcut such as windows + E for explorer, Windows + D for Desktop. and i also want my windows form still to be active after running the shortcut.
View 3 Replies
Oct 13, 2009
Table 7.1 gives us the U.S census bureau projections for the populations (in millions) of the states predicted to be the most populous in the year 2030. Write a program that allows the user to endter the current populations of the states into an array of text boxes, and gives the percentage growth for the collection of five states. The growth is calculated with the formula: Growth = (projected pop - current pop) / current pop
percentage growth can be displayed as Formatpercent(growth). [code] why cant I get the code into bigger windows?
View 3 Replies
Nov 22, 2010
I'm compiling and testing the VB programs in a download from MS of the Windows API Code Pack at url...(which is in VS 2008 and needs to be converted to run on VS 2010). So far I've resolved most of the issues, but a couple are baffling.The code as downloaded for the Taskbar demo refers to icons in the project resources as My.Resources.Green and My.Resources.Yellow and Red. Fatal errors, even though all the help pages say this is the correct way to access them. I got the build to run by removing the "My."; has there been a syntax change between VS 2008 and 2010? When I run the app, I get a message from TaskbarDemo.vshost.exe which says "This demo application needs to register .txt files as associated files to properly execute the Task related features. Filetype is not registered." Does that mean that in trying to debug the app, I have to modify the registry to associate the test program with the .txt filetype?
View 4 Replies
Dec 10, 2010
One of my application is taking a lot of time on Windows 7 compared to XP. What application basically does is it creates some PDF files reads the content and emits on a form and then deletes the files. I ran ANT profiler on both XP and Win 7, and i could notice some differences. On win 7 some CAS related methods are widely called and those method calls were missing on XP.. Is this the reason ? If someone has faced similar issues,
View 4 Replies
Sep 26, 2010
when i click on the next button i want the next record to be displayed.
View 1 Replies
Aug 25, 2009
I made a bluring tool of some sort and you basicly drag an area of yuor picture and it blurs that certain selected elipsis.. the problem is THis only works on Winsows 7 Im trying to understand the diffrence but I can't. The PC uses the same graphic card same hardware just a diffrent OS but it wont do that Code. Anyways here is how I blur
Private m_ActiveControl As Point
Private m_CurrentPoint As Point
Private ileft As Integer
[code].....
View 10 Replies
May 18, 2009
Is it possible to create a form, and controls like buttons, and also assign those buttons to their own scripts by code? The reason I'm asking is I've added scripting functionality to my application for users, I want them to be able to add forms for their scripts
View 17 Replies
Apr 17, 2010
I've got some old Windows executable files. How can I edit them with Visual Studio 2010? What are the ways to see an exe's source code?
View 5 Replies
Jan 7, 2010
how to get the "windows form generated code"? I've tried double clicking all things I put in the form but it doesn't generate any default code...
View 1 Replies