Click here to Skip to main content
Page 1 of 1
Page Size: 10 · 25 · 50


Author filtered by: 7774tlas [x]
Question 22 Apr 2013   license: CPOL
Hi, I am trying to make my first custom control. All I want to do is display a value in Text on a progressbar. I've added the properties that I need (TextValue & TextForeColor), but how do I display the actual text on the progressbar? This is what I have so far:Imports...
Question 13 Apr 2013   license: CPOL
Hi, I have made a simple drawing program and would like to have a palette of the WebSafe colors to choose from. Is there a simple way to add the colors to a TableLayoutPanel? I was thinking something like: For Each color in WebSafe Colors 'Would it be System.Drawing.WebSafeColors? ...
Question 8 Apr 2013   license: CPOL
I've made a color picker tool that gets a ARGB color from a pixel. I've figured out how to get HTML and HEX colors, but can't figure out how to get HSV or CMYK. All the articles that I've found are in C#. I've tried converting a few(with web converters), but I always run into a problem. Here's...
Question 6 Apr 2013   license: CPOL
I need to determine the current user's color settings for the windows 8 start screen (both colors - light and dark). I've figured out how to get the taskbar color, but I also need the secondary color. Please help.
Answer 18 Mar 2013   license: CPOL
To reverse it(maximize), just reverse the direction - Private Sub TMR_Max_Tick(sender As Object, e As EventArgs) Handles TMR_Max.Tick Dim RSV As Integer RSV = "-" & PAN_PBAR.Size.Height If PAN_PBAR.Top = 0 Then '1080 is the height of the control/form ...
Answer 17 Mar 2013   license: CPOL
I had the same problem a few weeks back. If I recall correctly, there is no way to do this. I ended up just adding the form That I needed to the primary project. You CAN have the secondary form open when the primary form loads by right-clicking on the solution in the SolutionExplorer and...
Answer 17 Mar 2013   license: CPOL
You can use a timer and the control's .left/.right/.top/.bottom to animate the control's position.'Minimize Control Private Sub TMR_Min_Tick(sender As Object, e As EventArgs) Handles TMR_Min.Tick Dim RSV As Integer RSV = "-" & PAN_PBAR.Size.Height If...
Answer 17 Mar 2013   license: CPOL
You need to compare the datagridview cell valuesif DGV1.Rows("row index").Cells("# of cell").Value = DGV2.Rows("row index").Cells("# of cell").Value Then 'do thisElse 'do thatEnd If
Answer 17 Mar 2013   license: CPOL
This is a snippet from a similar app. You should be able to adapt it for your needs.Private Function Total() As Double Dim total As Double = 0 Dim i As Integer = 0 For i = 0 To DGV_PYX.Rows.Count - 1 tot = tot +...
Answer 17 Mar 2013   license: CPOL
One thing that you could do is add the combobox columns at design time, set their visible property to false, then set it to true at run-time when the ADD button is clicked.
Answer 17 Mar 2013   license: CPOL
OK, I found the problem. - Change:System.IO.File.MoveTo:My.Computer.FileSystem.MoveFileNow it works fine. Thanks to Sergey, for trying to help.
Question 17 Mar 2013   license: CPOL
I am trying to create a simple "folder portal" for my desktop. In my form I have a panel that I want to be able to drag and drop files to, then the files are moved to a folder location on another disk. When I try to drag and drop, I get an exception: (An exception of type...
Question 12 Mar 2013   license: CPOL
I am having problems renaming a file to all upper case / lower case. All I need to do is change the case of the filename, not the filename itself, but I keep getting an exception that the file already exists. This is what I've tried so far:#1Dim OldName, NewName As String OldName...
Question 15 May 2012   license: CPOL
I am trying to create a playlist editor for my app that displays video files in a ListView and show the thumbnails for the files added. I'm using Drag and Drop to add the files to the ListView. I can add the files (the file name and details are displayed ), but no image. Here's the code that I...
Question 14 May 2012   license: CPOL
I've created a media player in visual studio w/ custom controls and some extra features (set chapters, A-B loops, etc.) using an embedded WMP Component. Everything works fine, but now I need to know how to access my WMP Library so that i can navigate through files, load playlists, etc. I'm using...
Question 17 Apr 2012   license: CPOL
I have an unbound DataGridView w/ multiple columns(10). I add data to it programatically when a button is clicked. The first column contains durations in milliseconds(1000 = 1sec). Each time a row of data is added to the dataGridView, I need it to update the sort list of the rows depending on...

Page 1 of 1


Advertise | Privacy | Mobile
Web01 | 2.6.130513.1 | Last Updated 15 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid