Tagged Questions
2
votes
4answers
43 views
Is there any risk in upgrading from VS2010 to VS2012 in the middle of project development?
I have been working on a rather large project for approximately two years in VS2010. I just got a license for VS2012 but I have some fears regarding what may happen if I remove VS2010 and attempt to ...
2
votes
2answers
56 views
How to restrict form movement to horizontal?
I have a standard form with standard title bar that user may grab and move the form around. In certain situations I want to restrict this movement to horizontal only, so no matter how the mouse ...
0
votes
0answers
15 views
How to print a test page and capture the return value for a non default printer on a remote server using WMI's PrintTestPage method?
I'm using the System.Management namespace along with WMI to install printers/ports on a remote server. Once the printer/port is installed, I'd like to print a test page, capture whether or not ...
0
votes
0answers
10 views
Redirect Key input from a Control to a Form
I have a Windows Form - MyForm.
In MyForm I have a WPF Control (MyWpfControl).
That control, when focused (selected) inhibits the keys of MyForm.
That means, I capture KeyDown only in the Wpf ...
0
votes
0answers
12 views
Installing a Vb.NET Windows application by including Crystal Report runtime
I have a Windows application developed in VS2010 and .Net framework 4.0. We have used Crystal reports in the application.
We need to create an installer by including crystal report runtime and the ...
0
votes
2answers
32 views
Set ComboBox Text on Basis of SelectedIndex
I am trying to set the Text property of ComboBox on the basis of SelectedIndex but the problem is Text is becoming String.Empty after changing the Index of Combobox.
Each Item in ComboBox correspond ...
0
votes
0answers
21 views
How can i find the category of website opened in web browser control
I am using .Net windows programming with c#.
I got web browser control.
How can i find the category of website opened in my web browser control.
Category could be of any like
"Advertisements",
...
1
vote
1answer
65 views
How to use a thread to completion, then reuse the thread?
I'm building a form and I'm trying to use threading in order to get some results from a WMI query to display in a textbox without having the form freeze up on the user. However, when I use the code ...
1
vote
2answers
66 views
Go To Line in Text Editor
I tried implementing GoTo ling in a basic editor-type app but isn't always accurate. More often than not, it gets the right line, but it seems that the more lines there are, the more of a chance it ...
0
votes
1answer
26 views
DataGridView Cell color change
I have a test program that builds a datatable (26 rows by 6 cols) as datasource for a DataGridView.
The datagrid can be edited by selecting cells, and entering values from one of 3 NumUpDown controls.
...
0
votes
1answer
29 views
How to login into smtp server
i want to login into smtp server without sending any mail.
Code for explanation:
Dim S As New SMTP()
Dim IsOk As Boolean
IsOk = S.Connect("smtp.example.com","994","username","password")
IF IsOk ...
0
votes
2answers
34 views
Why can't my users find my ClickOnce application's exe?
I have an app and my users need to right click on files they create > Open With > Choose Programs > MyApp.exe - but they can't because they cannot find it on their system. All they can find is a bunch ...
1
vote
0answers
17 views
.NET CF : Scrolling Issue (SB_TOP does not work)
(.NET CF/Windows Mobile 6.5) I have a panel which contains some controls. I am using the below pInvoke to set the panel's scroll bar to the Top, with the page scrolled all the way up.
private ...
2
votes
1answer
31 views
Is it possible to hide an enum value from a PropertyGrid?
I'm working with the PropertyGrid control and using the SelectedObject property to display data within the PropertyGrid. Some of the properties in my grid are enum types. What I'd like to be able to ...
0
votes
2answers
27 views
How to dock a view inside of a XtraGrid.GridControl?
I have a DevExpress XtraGrid.GridControl in a Winforms project that I'm using with a Master/Detail setup with multiple tables in a dataset that is bound at runtime. The visual behavior of the grid is ...
0
votes
1answer
32 views
NGen and generic collections. How to get rid of Jitting?
I'm struggling with ngen and generic collections. I've ngen'ed all my assemblies in solution, but still somehow jitting is occurred every time my app is executing that code:
private ...
1
vote
2answers
18 views
Cannot set WordWrap option on TextBox inside TabControl
I have a TextBox that is added to each new tab control tab page that gets created at runtime. All properties are set properly (e.g. Multiline, etc), but when i try to access the textbox from ...
0
votes
1answer
34 views
Winform Listbox Select Items from Database [duplicate]
I have three database tables:
a list of cars,
a list of people, and
the third is the many-to-many table of people to cars.
On my winform for a person, I have a listbox of available cars. ...
0
votes
1answer
56 views
Is there a better project pattern for a Winfoms app than the MDI Application?
It litters my app with nonsense like File Open and Save, Edit- Copy and Paste, etc. as if I'm trying to build a better notepad, that can have multiple confounded text files open at once. Most business ...
0
votes
0answers
13 views
Get user Id in instagram
I try to using instagram api within vs using [c#,windows form] and I try with calling the url to get the access token and no problem with this issue but I need to know how to get the user id number ...
-1
votes
2answers
86 views
Get text from dynamically created TextBox
I have a button when clicked creates textboxes dynamically:
for (int i = 0; i < length; i++)
{
Name.Add(new TextBox());
System.Drawing.Point locate = new ...
0
votes
1answer
20 views
How to implement my own graphics clipping?
I have a task for my Computer Graphics classes. I have to create an application with the following features:
There is a dolphin floating on the screen, the user can move it around,
The dolphin is ...
0
votes
0answers
17 views
Does the end-user require .net 4.0.2 to run an application that uses LocalDB?
I have read that SQL 2012 LocalDB Requires .net framework 4.0.2.
I am researching possible deployment options for my client-server application with a winforms frontend.
What I can't figure out is, ...
1
vote
1answer
36 views
How to query ManagementObjectCollection with LINQ, then loop through PropertyData for returned ManagementObject?
[C# .NET Windows Form WMI]
I'm pretty new at C#, but I have experience with VBScript and I'm trying to convert a script I wrote to C#. Instead of just using a converter, I'm rewriting the code and ...
2
votes
1answer
50 views
Catch opening of file if there's no program to open it
my code
var info = new ProcessStartInfo(path);
info.WorkingDirectory = path;
info.WindowStyle = ProcessWindowStyle.Maximized;
var p = Process.Start(info);
it will open a file (.pdf, but could be ...
0
votes
1answer
28 views
Winforms MDI Navigation Bar
I have searched and searched and searched, and all I can find is how to do this with RadControls, or with DevX controls.
How can I hide the minimize/close/maximize nav bar once my MDI Parent has ...
-1
votes
0answers
40 views
“Object required” Error when Calling Internal Methods
I'm trying to call an internal method from QTP on one of my .NET objects. When I run the script however I get an "Object required" error message.
Here is my script:
Set gridObj = SwfWindow("Test ...
0
votes
1answer
18 views
Refresh child controls in flowlayoutpanel when scrolling
In .NET 3.5 with winforms I'm making an image thumbnail viewer control.
The main control is derived from a FlowLayoutPanel which takes a list of images and displays them. The images which are ...
0
votes
0answers
24 views
How to convert Japanese characters to Latin characters?
I try to program an application to convert foreign characters.
how can i convert Japanese character か to ka?
I am still in research mode of UCD data.
0
votes
1answer
34 views
I am trying to make ListView ReadOnly and can't setup Enable property to false because I need allow user use scroll bar
I am trying to make ListView ReadOnly and can't setup Enable property to false because I need allow user use scroll bar in winforms. I have checkboxes in listview as listview_items.
I want to keep ...
-4
votes
1answer
45 views
Display programatically created controls on Tabpage
I have a button, that when clicked it creates and displays various controls such as, text boxes and labels.
However, I want it to display on a Tabpage. At the moment it shows up on the original form ...
1
vote
1answer
30 views
WinForms WebBrowser in WPF memory leak
I'm currently working on an application where I am using WinForms WebBrowser controls in WinForms hosts. The problem is even when I close a browser and dispose of everything the memory doesn't seem to ...
-2
votes
0answers
35 views
Transparencykey and displayed images issue
I made a transparent WinForm to launch a image for a certain amount of time (A SplashScreen) which is displayed in a picturebox control.
The problem is the transparency of the form, the displayed ...
1
vote
4answers
48 views
Path for separating out the view layer from an existing winforms app?
Given:
Our organization has a standard windows form application
The form and business logic are intertwined -- i.e. the Autonomous View. We know that the Autonomous View pattern makes writing unit ...
1
vote
1answer
39 views
DataGridView select all cells and row headers and column headers for copy
The .SelectionMode of the DataGridView lets you select all the cells and row headers, or all the cell and column headers, but I can't figure out how to let the user select everything, including row ...
2
votes
0answers
36 views
Design-Time Redraw
i created a custom listview control. I set it to add a new button every time i add a new Column. When i run the program containing my custom control, the column buttons are placed properly. However, ...
0
votes
2answers
26 views
windows explorer context menu strip
I have a c# application winForm.
The form contain a tree view that show the file windows file system.
I want to add an option for right click on file that open a windows context menu strip.
There is a ...
0
votes
0answers
16 views
Program moves scroll automatically to top in runtime built controls
I'm working on a project that needs to have a page with controls being repeated for the number of elements to be introduced. For example, if I need to configure 5 elements, i will have 5 rows with ...
0
votes
0answers
8 views
Datagrid show name of my objects .NET, how can i do to show the values from my objects?
i have a problem. i have a list of objetcs an some of my objects have inside others objects, and when i put this list into my DataSource of the grid i have this:
I USE .NET 2010
my question is, how ...
-1
votes
2answers
59 views
How to disable all other things except current windows form
i have developed windows application.
started my application at startup window by copying exe to startup folder.
Application is full screen window.
so i have disable taskbar,taskmanager etc.
have some ...
0
votes
1answer
24 views
How can you host a desktop application in cloud?
I have created a windows(desktop) application (large) using C#.Net, VB.Net & SQL Server 2005.
I need to move this application to cloud platform. I've not much knowledge regd Cloud.
Every thing ...
0
votes
2answers
41 views
RegEx for string starts with numbers and followed by letters
I want Regular expression for such inputs.
1
1a
1b
1c
1d
2
2a
2b
2c
But if i write following inputs then it should not allow.
a
b
c
The string must start with 1 or 2 (only once and ...
0
votes
3answers
76 views
Need help on a simple string sort method from a string array
seriously need some guideline on string sorting methodology. Perhaps, if able to provide some sample code would be a great help. This is not a homework. I would need this sorting method for ...
1
vote
2answers
49 views
Open WinForm from WPF application?
I've created an WPF and WinForm Application, what i need to do is
open the WinForm from the WPF application. Both are in the same solution but they're diferent projects.
I tried the following:
Dim ...
0
votes
3answers
45 views
Enable control of form based on form it was loaded?
How to enable control of a form based in form it was loaded?
For example if Form3 was open from Form1 the button that will be enable in Form3 is button1 and if Form3 was open from Form2 the button ...
0
votes
0answers
35 views
How to programmatically center controls horizontally in a FlowLayoutPanel? Or calculate total child control space width?
[C#, .NET, Windows Form]
I'm learning C# by developing a Windows Form and I'm pretty far along in my current project, but I've hit a snag. I read something that led me to believe that the ...
1
vote
1answer
60 views
Displaying PDF on WebBrowser Control not working
I Have a test.pdf and I want to display it inside in my form.
My code is very simple:
public Form1()
{
InitializeComponent();
...
1
vote
1answer
18 views
Fire TabControl Event after new tab is displayed
I want to fire an event when a new tab is selected, after the new tab is displayed.
I have tried to use the .Selecting event which fires before the new tab is selected, and the .Selected event which ...
1
vote
1answer
29 views
What event occurs immediately after a control is displayed for the first time?
I know there is UserControl.Load, which occurs before the control becomes visible for the first time. And I know there is UserControl.HandleCreated, which occurs when a handle is created for the ...
0
votes
1answer
54 views
How to write a method/new constructor for an existing class/structure? Padding(int Horizontal, int Vertical)
I'm trying to learn C# by building a Windows Form and I've run across something that I haven't been able to find the answer to searching. My search results may have already provided me the answer ...


