VS 2008 Setting Form Size To Anything Smaller Than 132 X 38
Jun 6, 2012How do we set a form size smaller than 132 x 38 pixels? I would prefer any native vb.net way (if possible) over use of any windows API.
View 10 RepliesHow do we set a form size smaller than 132 x 38 pixels? I would prefer any native vb.net way (if possible) over use of any windows API.
View 10 RepliesHow to make the form size automatic setting the size equals to the screen. or Maximize the whole form including the form components.
View 3 RepliesTry it yourself: Plug in a USB flash drive (just a normal one with a single primary partition on it, as is the manufactures configured) to your computer.
Run WIM "Select * From Win32_DiskDrive"
Note the USB drive's size (in my case, it is a Kinston DataTraveller G3 2GB drive):
Win32_DiskDrive instance
BytesPerSector: 512
Caption: Kingston DataTraveler G3 USB Device
[CODE]....
Why the partition is bigger than the disk on which the partition is created and just a part of the disk?
i made a webpage with a drop down list...so when i click on the drop down list and click on the item there, a box will pop out i dont want the browser box to be the standard maximize internet explorer browser size or standard minimize internet explorer browser size...i want it to be in a A9 or A10 paper size the moment I select an item and it pops out...
View 5 Repliesusing visual basic... well, its for my project...making a webpage i made a webpage with a drop down list...so when i click on the drop down list and click on the item there, a box will pop out i dont want the browser box to be the standard maximize internet explorer browser size or standard minimize internet explorer browser size...i want it to be in a A9 or A10 paper size the moment I select an item and it pops out...
View 4 RepliesI have just found that if a DataGridView image column's size (height & width - in pixels) is smaller than the image's original size (in my case all images are exactly 180 x 180 pixels) at the time the cell is populated then the image is automatically being converted to a lower resolution I assume to fit the image completely within the size of the cell). How can I stop the automatic scaling of the image?
The image below show the same file displayed twice, both at 60x60 pixels ('Thumbnail' column) and a blowup of the image (PictureBox populated via the CellMouseEnter event) to it's right. You'll notice the resolution of the first blowup is far less the the second. so, what made the difference in the resolution of the blowups is? In the second blowup's case I'd first stretched the image column's width to ~180 pixels and set the row height to match (via the ColumnWidthChanged event) then populated the DataGridView then stretched the image column to 60 pixels (its minimum).
I developed a form application on my computer, but when it was used in another computer with different screen size, i was told the form didn't fit. Do I have to adjust the form size or any other ways to let the form compatible on different screen size? (could be different screen size or wide screen)
View 2 RepliesSo that's how I want it:
If I re-size the form, the textbox inside should be re-sized to fit the form, NOT DOCK!
I'm making an app with several forms and wanted to add a label to each form that, when double clicked, would resize the form to 10 x 10 pixels.
ControlBox, MaximizeBox, MinimizeBox, properties are set to false so there is no title bar. No text or icon. MinimumSize is set to 0,0.
I made a new project that consists of one form with one label to make sure there was nothing in my code causing the problem but still every time I double click the label the form is resized to 27 pixels high by 112 wide.
I made a program on a computer with a big screen.I set it to open in 'maxamized state' , and I took away the top, so you can't close/resize/minimize it. How can I get the form to automatically resize to the screen size??
2) Is it possible to make a form ( in visual basic express edition 2011) not close when user shuts down computer and/or logs-off ...maybe run in back grond..?
3) Is there a code ( in visual basic express edition 2011) that can make the program start automatically when a user logs-in ?
4) Is there a code that can make something happen (e.g. play music, etc.) from e.g. 7:00 A.M. - 10:00 A.M.
Is there a way to automatically resize a windows form to fit a smaller display? I created a program on a computer with a 12" display, everything works fine. However, when I load the same program on a computer with a 8" display, I am not able to view all the contents on the windows form. Is there a way to correct this without manually resizing all the contents on the form?
View 1 RepliesMy app writes events to event log from time to time using below [code]...
Problem is this app is installed on multiple remote sites and form time to time the event log becomes full one or the other pc and app start to give error. Is there a way to set the Event Log, Log Size setting to 'Overwrite events as needed' via code so the event log never fills up?
How can one set the screen size? As with the task bar, by incressing the size sets new limits when maximizing an application's window. How can I tell the system what would be the demensions of the desktop screen: left, top, width, height?
View 5 RepliesWhen setting a point 10 font size in VB6:
[Code]....
The reported size is 10. Can someone explain the difference here? My hunch is that VB6 is using a .75 step because my system is configured at 96 DPI, and .NET is not using said step, or not reporting its usage, but I'm not sure.
How can a TextBox or RichTextBox buffer size be set? I have data that goes to a TextBox continuously, but I want to set a maximum size of buffer for the TextBox. I read in one forum someone suggesting to set the TextBox MaxLength property, but the questioner replied that he had tried this, and when the MaxLength was reached no further data input was possible, and what he wanted was the situation where new data could still come in, but the oldest data was then deleted, i.e a rolling buffer, which is precisely
View 3 RepliesI built a console application that reads a directory of files, builds a 'put' statement for each file and submits each statement to a webservice. Then, it reads the webservice output (for each statement), parses it for a specific string, builds a 'get'statement and submits the 'get' to the webservice (for each file).Then, the application reads the 'get' output stream and writes a file (to the local file system) for each file that was submitted, using a streamwriter.I have encountered an issue where some files are unable to be written to the local file system by the streamwriter.After much testing I have figured out that any file exceeding 4096 bytes will cause the application to hang where streamwriter should write the output to file.I have tried the syntax below to increase the size of the streamwriter buffer however, it doesn't seem to be working.I do need to mention that I am an extreme novice with VB or any other language and have, for the most part written this module from research and code samples.I should mention that this module does work for any file that is less than 4096 bytes in size.
View 6 Repliesin Old vb/VBA, I am accustomed to doing THIS when I instance a form object (as in "pop-up"):
Private WithEvents SomePopUpForm As Form_PopUpForm
Private Sub cmdEdit_Click()
Set SomePopUpForm = New Form_SomePopUpForm
SomePopUpFOrm.Visible = True
End Sub
[Code]...
I have FileUpload Control on my Page:
<asp:FileUpload runat="server" ID="fuAttachment" CssClass="fileUploadCSS" size="76" />
I want to change size of this Control on Button's Click event though Jquery. How do i set it? because
($("#fuAttachment").size
Doesn't working. and
($("#fuAttachment").width returns null
I am working on an application using vb 2008 express. I have built test programs over the past few weeks and shared them for feed back. Today when I finished some work, I built another test application, but when I install it the start-up screen maximizes but is set between one and two desktop icons from the top of the screen.
In debug mode it looks fine. In the past it looks fine. Each time I start the program the screen is in a slightly different location. It is set to start maximized and to the best of my knowledge, I did not change any settings in the property area. I have tried loading on three computers and the results are the same. Any ideas on what I could have done to produce this strange result?
i want custom paper size can i declare in height and width of the paper.
View 1 RepliesI want to modify the default Object text size for all objects I place on my form. When I am teaching, it is hard to see the text on the objects. I have changed the code area to 16 pt, but I have not seen how to modify the default font size of the object. They all are 8.8 pt.
View 1 RepliesI am trying to find an example of code to help me set the font size of a richtextbox.
View 2 RepliesI am trying to set custom paper size on my printer with Winspool.drv. But getting error as 'Attempted to read or write protected memory.'
Private Sub btnTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTest.Click
Dim hPrinter&
[Code].....
If you can set the height of a panel at run time
Me.Panel1.Height = 3 What is the correct syntax for setting maximum size (height)? Tried this several ways and been searching. I know this is simple.
Me.Panel1.MaximumSize.Height = 512
I have an application that's going to be portable so it's likely the path of the database itself (access mdb file) will change so hard wiring the path in the app.config isn't practical. I would like to create a 'Settings' form for the user to enter the path (browse for would be ideal but I can figure that out later) of the database file and save it for future use with the same app. I've found a few things out there talking about creating a new app.config file alongside the original with a 'key' defined but I'm not sure how that relates to the original app.config and how it would call the new variable to make the connection.
View 3 RepliesI can't find a way to change the opacity of a mdi form within it's parent. I can change the parent form's opacity under properties, but can't change the embedded mdi form's opacity under it's properties. Opacity = 0.5 doesn't change the opacity of the mdi... works fine for the parent form. I was hoping that the embedded mdi forms functions would still be independent of the parent in order for me to change it's opacity.
View 2 Repliesi need a picturebox to, when an event has happened to either revert back to its original place.or set a location for it to go after the event has taken place.ive tried lots of different code but its not working?
View 3 RepliesI want to make a working ScrollBar for my form size. Why this doesn't work?
VScrollBar1.Value = Form1.Size
I have created an instance of a Rich Text Box:
Dim RichText As New RichTextBox()
I was able to write to it using:
RichText.AppendText("Text")
I was able to save the document to a file:
RichText.SaveFile("C:TempRTDoc1.rtf")
What I cannot find is how to set the font, and font size. IntelliSense doesn't help. Everything is "read only", meaning retrieve a current value.
I need to print the bill and the paper size is 204 by 152 mm and its a continous paper. i did write the code as follows [code]i have done enough research but came with nothing thats why m posting here.I just need how to set custom paper size to crystal report.
View 7 Replies