Add Some Sort Of Scrollable Credits Text To Application?
Feb 27, 2010
I want to add some sort of scrollable credits text to my application about form how can I do that using a label? I want to make it look like the one Kaspersky has for example included example below
View 6 Replies
ADVERTISEMENT
Jul 10, 2009
i want to write text on trasparent scrollable control.I try to use label (that accepts trasparent backcolor), but it doesn't have scrollbarIf i use textbox, it has a scrollbar , but not trasparen backcolor.So what control can i use? There something to do this?
View 6 Replies
Jan 15, 2009
Is it possible to make a multi-line text box still scrollable while it's disabled? The closest I can achieve this is to set the text box's ReadOnly property to false, which will gray out the text box, and still scrollable, but the text in the box remains black instead of being gray. Changing the forecolor of the text box does not have any effect. The color of the text changes back to black when I set ReadOnly to true. I want to be able to mimic the disabled text box visually.
View 4 Replies
Feb 26, 2010
Im creating a slot machine that costs 10 credits to use but i cant get it so that i can -10 credits from the total.
Heres my entire code:
Public Class frmFruitMachine
Dim OneCredit As Integer = 1
Dim FiveCredit As Integer = 5
[CODE].........................................
View 8 Replies
Feb 23, 2010
I've got to create a slot machine game which operates on credits, I have three buttons and a textbox. One textbox is to add single credits, the second to add 5 credits, and the third adds 10 credits. They all need to be added up to give a 'total' & " credits"
Public Class frmFruitMachine
Dim OneCredit As Integer
Dim FiveCredit As Integer
Dim TenCredit As Integer
Private Sub btnOneCreditit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOneCreditit.Click
[Code] .....
View 4 Replies
Mar 8, 2012
I have two issues. The first is that I want to make a textbox scrolling similar to how credits scroll. I don't want it to move on the form, just to scrolling the text down a line/pixel. I thought I could do it with the "Lines" element, but I'm not exactly sure how to execute it.
The other problem is with my flash screen. Right now I have it set so when a button is click, it goes onto the main form. I don't want to use the button but rather have it so if Enter is pressed at any time, it'll go to the main form. All the solutions I've tried to use involve the "e.Keycode" code, but for some reason its unavailable.
View 11 Replies
Jun 30, 2012
I'm using paging in a WinForm application (VB.NET) using the code below. This works fine, but when I click on the column header this will only sort the rows from one page. If I move to the next page, the sorting is gone.[code]...
View 2 Replies
Nov 9, 2009
I'm trying to automate the process of logging into twitterfeed.com, and filling in the information (the feed url and twitter username are pulled from textboxes). I had it mostly working the other day, even if it is a bit sloppy (the only way I could get one button to click is to send 50-some tabs). However, lately it seems to enter in a sort of loop. When I pause the program, Visual Studio indicates that it is the Application.DoEvents in the Private Sub "wait" that is still running even after it should be.
Public Class Form1
Private feed, username, temp As String
' Code stolen off of a website as an alternative to sleeping, or trying to do a timer + while combo like I had been doing
[Code].....
View 1 Replies
Jan 3, 2011
the permanent text in the textbox. hint text
View 6 Replies
Dec 13, 2011
I am building some context menus and the menus will contain a "Cut", "Copy", "Paste", "Sort A to Z" and "Sort Z to A" buttons just like the context menus in Microsoft Office. I would like to use the same images used in MS Office for these buttons in my context menus. Anyone know how to add these images to my contextmenus?For example,
Private CMS As New ContextMenuStrip
CMS.Items.Add("Cut", 'MS Office Cut Icon Here', Me.subCUT)
View 7 Replies
Feb 1, 2009
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Me.Size = New System.Drawing.Size(830, 1200)
' MsgBox(Err.Description & " " & Me.Size.Height.ToString)
MsgBox(Me.VerticalScroll.Value.ToString)
[Code]...
View 1 Replies
Jul 28, 2011
I am making a program for my Dad's company that can keep track of inventory so I need to store the info in a .txt and load it up etc. I currently am using a stream writer to write to the text and I got that down pat I am just having troubles loading it back up and putting the info in specific text boxes aka sorting or parsing?
Here is my current code. It is kind of useless because I have tried so many methods I thought maybe I could use a ReadAll function have it go to a string and parse from there hoping it would have been easier but it has not worked out for me so far.
[code]...
View 14 Replies
May 19, 2011
i am trying to create a program which will get data from the .txt file. I got to stage where program gets me the information from the .txt but i would like it to be sorted.
Here is sample of text in .txt
01:13:11 Setting up 01:13:11 Loading level 01:13:12 Now accepting input on 25565 01:13:13 Level saved! Load: 0/16
I want it to take a new line after the time so it would look like this.
01:13:11 Setting up
01:13:11 Loading level
01:13:12 Now accepting input on 25565
01:13:13 Level saved! Load: 0/16
The code in visual basic that i use now for inputing the text file.
Dim FILE_NAME As String = "C:Documents and SettingsAdministratorDesktopmcserver.TXT"
Dim objReader As New System.IO.StreamReader(FILE_NAME)
TextBox2.Text = objReader.ReadToEnd
objReader.Close()
Why do i need it ? This is a log from command promt, this app will be for a game server.
View 9 Replies
Jan 16, 2012
I want to be able to press a button and have it sort the text in a richtextbox ascending alphabetically.
View 7 Replies
Jan 6, 2011
I'm going to create an application that will act as some sort of task manager. For stability reasons I will not use threads but processes instead. I have to deal with several third party libraries and/of COM servers that are not always that stable and can produce severe crashes sometimes. This may (of course) not affect the task manager
Problem with using processes is how to communicate with them? The process must f.e. give a status back of what it's doing every x seconds.
I was thinking of using TCP over a separate port per process, but is this the best way of doing this?
View 5 Replies
Mar 2, 2010
create a database application, which integrates search and sort, with the use of notepad.
View 5 Replies
Jul 24, 2009
How can I make a form scrollable?
View 2 Replies
Mar 15, 2012
I have a form in VB which is scrollable (using autoscroll) and when I currently click 'print', it only prints what I can see; it takes a screenshot of the viewable information.
Here's my code:
Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click
Dim settings As New System.Drawing.Printing.PrinterSettings
sPrintForm.PrinterSettings = settings
settings.DefaultPageSettings.Landscape = True
[Code] .....
How to print the whole of the page, including the areas that can't be seen? I've already tried using:
PrintForm.Print(Me, PowerPacks.Printing.PrintForm.PrintOption.Scrollable)
And that didn't work.
View 3 Replies
Mar 15, 2012
I have a form in VB which is scrollable (using autoscroll) and when I currently click 'print', it only prints what I can see; it takes a screenshot of the viewable information.[code]...
View 8 Replies
Mar 6, 2012
I want to print the entire contents of a scrollable panel in VB 2008 express. I am an intermediate learner but still can't fathom many of the guidelines given. There is nothing to bridge the gulf between "Hello World" level and more sophisticated (but not cosmic) tasks.
[Code]....
View 2 Replies
Jun 2, 2011
Is there a way to enable a default pan behavior in the .Net scrollable control when you press down on the center scroll button, or Is that a behavior you have to implement yourself? You know like in some programs where you press down on the center button and it give you an arrow cursor that pans whichever direction you move the mouse?
View 1 Replies
May 17, 2011
I would like to build a form that has multiple picture boxes that a user can browse through and click on each one to select multiple items. The pictures will all be pulled from a single directory. After they have selected the items, they will click a button that will change the names on all the selected pictures. I know how to change the names, but I need some assistance with the picture box and loading the file names into a list or array. Not sure what it would be called. I am not even sure really if I would use a picture box or some other form item.
View 4 Replies
Oct 18, 2011
i am working on Scrollable form, when i am trying to print this form with PrintForm object its printing only the showing part not all the form this the code which am using.Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Me.PrintForm1.Print(Me, PowerPacks.Printing.PrintForm.PrintOption.Scrollable) End Sub
View 3 Replies
Mar 19, 2011
I need to increase the size of my form and allow it to be scrollable vertically but I cant set my size any larger then 780 I have auto scroll set to true and from what I thought I understood I should be able to make the form longer and it would be scrollable Can someone tell me what I am doing wrong ?
View 15 Replies
Aug 5, 2010
I'm building a break-timer application. The objective of this, in VB, is to have an application that lets me create a timer dynamically (maybe through a button click) that counts up (or down if you wanna call it that) to a preset point, then makes beeping noises like an alarm. This is due to my desire to no longer be late to and from my breaks at work.
I was able to create a super simple one that just had three timers that I could tick off, but I find myself using them for way more than just three uses. For example, I start one when I get in to count to the point when I need to punch in my timecard (our system is annoying about being exactly on time) then I start one for when my first break starts, then one for my break, then one for after my break but before my lunch, etc.
So, I wanted to have a program that does the following:Has a scrollbar-capable box that can scroll up and down.Each line of the Scrollbar-capable box has one of my custom controls in it (a wide, thin bar containing a field for how long to go, a start button, a display of time elapsed in seconds, and a stop button).
I can just click a button to create each control one line at a time.Now, I know HOW I can create these, but I want to know:Is there an existing type of box that would let me do something like this? Has someone already written this? Or am I going to be creating a COMPLETELY custom control that will be fairly painful to figure out? In which case, is this even doable, or should I just try something else?
View 2 Replies
Jul 14, 2009
I have lines like this:
10.0 28 Black (2 01.00 15.0) [1 06.81 58.3] 114111 -81725 191654 -41066
10.0 28 Black (2 01.00 15.0) [1 06.81 58.3] 114111 -81725 191654 -41066
11.0 28 Black (2 06.00 01.0) [T375 ] 135111 -46725 188611 35775
11.0 28 Black (2 01.00 18.0) [2 15.21 26.3] 109611 -81725 97147 17718
11.0 28 Black (2 01.00 12.0) [2 15.21 26.3] 118611 -81725 97147 17718
11.0 28 Black (2 01.00 49.0) (2 13.00 11.0) 63111 -81725 120111 2275
12.0 28 Black (2 07.61 19.0) [T377 ] 108111 -35472 191611 35775
13.0 28 Black (2 11.50 19.0) [T380 ] 108111 -8225 229111 14775
13.0 28 Black (2 10.50 19.0) [1 14.79 33.3] 108111 -15225 229111 14775
13.0 28 Black (2 09.50 19.0) [T378 ] 108111 -22225 229111 7275
13.0 28 Black (2 01.00 10.0) [1 12.77 44.7] 121611 -81725 212079 659
I want to arrange this lines according to the number in [Txxxx] from small to big then write all the line which not contain[Txxx] at the below of sorted lines. How to do this? is that possible?
View 15 Replies
Oct 6, 2009
I have lines like this
( Pin ) [ Probe ] Length = in.
| From | To | From | To
Length|Ga|Color |(b r c )|(b r c )| X Y | X Y
[code].....
View 1 Replies
Jul 14, 2009
I have lines like this:
Quote10.0 28 Black (2 01.00 15.0) [1 06.81 58.3] 114111 -81725 191654 -41066
10.0 28 Black (2 01.00 15.0) [1 06.81 58.3] 114111 -81725 191654 -41066
11.0 28 Black (2 06.00 01.0) [T375 ] 135111 -46725 188611 35775
11.0 28 Black (2 01.00 18.0) [2 15.21 26.3] 109611 -81725 97147 17718
[code]...
I want to arrange this lines according to the number in [Txxxx] from small to big then write all the line which not contain[Txxx] at the below of sorted lines?
View 7 Replies
Apr 2, 2010
im trying to make the form Dockable in the desktop on the righ side. I mean i can do this i can stick the form on the side but all other application are not seen in the full window coz my appz is still on the top and others appz under it.Size of the form is 200x1024, it is like administration stripe.So i would like to make other Winows in the system ended on the edge of my application. Is it even possible in VB?There is other way i guess to use some of the scroll(collapsible,expader) windows to the side of the desktop would do it as well but i dont know how to ?
View 1 Replies
Oct 19, 2010
I am just getting back into VB.NET, and I need to ask a question. I am doing a project for a class which requires iterating through 360 items in a scrollable control that will pause every so often. I am thinking I might use either a ListView or GridView, but I am not sure if this is the right way to go or if I need to use a different control all together.
View 3 Replies