WinForms is the informal term given to Windows Forms, one of the graphical application programming interface (API) included as a part of Microsoft .NET Framework. WinForms provides access to the native Microsoft Windows interface elements by wrapping the existing Windows API in managed code.
0
votes
4answers
25 views
FormatException unhandled exception when splitting IP octets
I am trying to split the octets from a user inputted IP Address and then have them placed into a .txt document. i am getting a "FormatException was unhandled" warning. I am new to programing so I'm ...
0
votes
0answers
10 views
winforms DataDirectory location
I have a c# winforms app that uses SQL compact and here is the connection string for the DB:
<add name="Test.Properties.Settings.TestManagerConnectionString"
connectionString="Data ...
1
vote
2answers
38 views
How do i store real-time data
I am developing a stock market application in windows form using .net framework 4.0. I am fetching ticks from the exchange real-time. I am able to receive the ticks on real-time basis. In my scenario ...
2
votes
2answers
28 views
Error appending text in ( nonexistant ) textbox due to async callback
I have written some code that works quite well : the program opens an async socket with the server, and writes in a textarea whatever the server sends.
The problem is, when i close the form, I get a ...
0
votes
1answer
12 views
Master-detail grid with IList
I have an IList which I'm passing as a parameter to a Dev Express 10.2 GridControl Datasource. Each "Foo" may have an IList or not. How should I have to do, to make a Master-Detail grid, where the ...
0
votes
0answers
5 views
How to connect to web'n'walk Manager progmatically
I use HMA and i can connect , disconnect to it using c# just send process execution with connect parameter.
I want to know if something similar exists for web'n'walk Manager for T-mobile
2
votes
3answers
21 views
Unlock folder in vb.net
I have an .exe and when I run it some files in one directory are being locked. I also have possibility in this .exe to rename that folder, and when I want to rename it of course I get the error that ...
0
votes
1answer
39 views
Amending a struct value in a dictionary
I've created a dictionary that takes the values of my struct and stores them. Filling this out looks as follows:
_screenEntry.type = typeof(string);
_screenEntry.value = tagTextBox.Text;
...
0
votes
1answer
31 views
Checkbox returned in Event Handler isn't one on form
I'm creating an array of checkboxes on a form dynamically; the code that creates the array looks like this:-
checkbox_array(count_of_checkboxes) = New CheckBox
if (count_of_checkboxes = 0) ...
0
votes
0answers
7 views
run multiple tasks in parallel using C#.net 2.0
I need to perform 2 tasks in parallel. One will load data in the GUI, till then I want to run a progress bar continuously in front of user. I tried BackgroundWorker but it is giving me some Thread ...
0
votes
2answers
50 views
Terminating Background Worker from a different class
This is how I set up my Background Worker
The question is: How do I terminate the process midway? I have to create a cancel button that will stop current processing.
I thought of use the line ...
0
votes
1answer
18 views
How to remove the top left cell in DataGrid
Is there a way I can remove the top left cell in a DataGrid ?
0
votes
0answers
14 views
Developing pager for winform application c#
i search google first to get any ready made sample for numeric pager for win form but unfortunately i found none. many exist for web application. so i have decided to develop my own. i have take one ...
0
votes
1answer
25 views
Add Office 2013-like animations to my C# application
So, in Office 2013, the applications have animations such as a "smooth typing" animation, along with things such as the email list in Outlook smoothly moving emails rather than just deleting one out ...
0
votes
0answers
8 views
System.Windows.Input.KeyInterop.VirtualKeyFromKey() does not Work?
Having e As System.Windows.Input.KeyEventArgs and trying to transform the Wpf Keyboard Event to a WinForm one, I do:
Dim myKeys As System.Windows.Forms.Keys = DirectCast(
...
1
vote
2answers
24 views
Winform saveas file location
I'm wondering how you got about saving a file in winform to the target location without having to hard code in the location.
Right now, my save methods look like this:
public void ...
0
votes
0answers
17 views
Application crashes with too many custom controls on data gridview
I have a dataGridView with custom control painted on it. It contains data of around 100 users for a whole month (31 days). I place my custom control of 3 link labels at each and every cell. Now while ...
0
votes
1answer
13 views
Calling Windows applications button click event from web application
we have requirement of calling windows applications button click event from web application.The scenarion is currently we are launching our web site from windows application. In web application there ...
0
votes
0answers
10 views
Specified argument was out of the range of valid values - dataGridView maskedTextBox
I am trying to host a masked textbox in a dataGridView column. The user is supposed to enter valid date values in the format dd/mm/year and i was following the example here ...
0
votes
1answer
26 views
having a loop wait for button input
I am using a do while loop that after every loop, needs to ask the user what he/she wants to do next:
Do While (VarA > 0) and (VarB > 0)
Update()
...
2
votes
1answer
41 views
How to query an embedded XML file using LINQ?
[C# .NET 4.0 WinForm LINQ]
I had an XML file that I added to my project as Content, but I'm now having to make it an internal, embedded resource so it will compile with the executable and I won't ...
0
votes
0answers
16 views
My forms using opengl library are freezing
I have a control form which is based on opengl component.It includes an opengl controlled or drawed form..If I show just one form there is not any problem but whenever i open 2 forms then the first ...
1
vote
2answers
30 views
Invoke a script in WebBrowser, and wait for it to finish running (synchronized)
I am using webBrowser.Document.InvokeScript("Function") to run a javascript, located in a local file opened with the Winforms WebBrowser.
The problem is, I need the javascript to finish executing ...
5
votes
4answers
101 views
Shake form on screen
I would like to 'shake' my winforms form to provide user feedback, much like the effect used on a lot of mobile OS's.
I can obviously set the location of the window and go back and forth with ...
0
votes
0answers
18 views
Random TimeOuts in vb.NET Thread Code (Task Factory)
I am working with a big application. It starts at the beggining of the form declaring and starting some threads:
Thread1 = New Thread(AddressOf Thread1Sub)
Thread1.Start()
Thread2= ...
0
votes
1answer
70 views
Changing the stored value in a textbox
My winform is capable of storing values entered into textbox, then when the appropriate node is selected on a treeview, these values return to the text box that they were entered into. However, I'm ...
-1
votes
0answers
30 views
Run windows service when machine starts [closed]
I have a Windows application in my server.But the problem is when machine Shutdown & then restart that service not started automatically.
I think to write a Windows service for that & when ...
0
votes
1answer
12 views
C#- Outlook Addin - Prevent message suppression
I am currently working on a small addin for Outlook (2007 & 2010).
When I click on a mail item, (not opening it, just to see it in the explorer), a form with a textBox appears. So, i type my ...
2
votes
1answer
35 views
Design Pattern /ListBox.Items.Count
i built an Winform application with Pcapdot.Net DLL's that take Pcap file and play all the file packets into the machine network card.
recently i have notice that all my main form (where all the ...
-2
votes
1answer
40 views
Code for Non-selectable Watermark Text in Textbox in C# windows app
I am currently working on a windows application.
I have already created a watermark Textbox. I just want the watermark text to be non-selectable.
I searching it for a while and i didn't find any ...
-3
votes
0answers
25 views
Search form C# forms
I am trying to make a search form which have 1 textbox, button and gridview. i am using this code but i am getting errors please help.
private void button1_Click(object sender, EventArgs e)
{
...
0
votes
1answer
50 views
C# Windows Application Form to Html Form
I'm working on a project where I need to convert a C# windows application form to an HTML form programmatically.
I'm having problems with sizing the HTML text boxes appropriately. I set the width ...
0
votes
1answer
17 views
“Send” keyboard keys to a control
In a WinForm I have a TabControl.
The TabControl, normally, responds to several key events, like Ctrl+Tab, Ctrl+Shift+Tab, Home, End etc...
But in my case I have in form an other control that ...
1
vote
3answers
34 views
SQL Stored procedures and error handling
I use Stored procedures all the time. but i never used error handlers inside stored procedures. I just came to know about error handlers. I tried to do it in my stored procedures but i never got the ...
0
votes
0answers
31 views
Automatically Update Values in Database from DataGridView
I'm currently working on a project using MySql in combination with C#.
The Data for the DataGridView is provided by a join from multiple tables in the DB. To show the data I use the following, ...
0
votes
2answers
31 views
Autogenerate Serial Number for DataBound DataGridView gives StackOverflowException
I am generating serial number for a column in Datagridview using the following code it gives me error...,
private void dgvQttnfrm_DataBindingComplete(object sender, ...
-6
votes
5answers
55 views
Cannot impliciltly convert type 'System.Collections.Generic.List<BallSeparation.Ball>' to 'bool' [closed]
I have this error on
for (Ball ball; ballList)
The error message is
"Cannot impliciltly convert type 'System.Collections.Generic.List<BallSeparation.Ball>' to 'bool'"
May I know how do ...
0
votes
1answer
34 views
Windows 8 tablet running regular exe. How to make things bigger?
We want to run our regular forms applications on Windows 8 Pro tablets. They actually run without any problem, but they look very very small on tablet' s screen. The tablet runs under 1024x768 or ...
-3
votes
2answers
34 views
how to Convert Word(docx) file to XML file? [closed]
When Converting a word file to an xml file Using C# coding
I need to
1.Customize the parent and child nodes for specific words in word file
2.The word file contains equations , we should convert ...
0
votes
0answers
8 views
google form allow user to upload file
Can you help me adding to a finished google form 4 buttons, that allow users to upload any file and that can be shown in the answer-spreadsheet. I was searching through the internet and could“t find ...
0
votes
2answers
25 views
How to email large files using c# windows application
I'm developing an windows application in which i need to send some files as attachment through email.
Code
public string SendMail(string mFrom,
string mPass,
string mTo,
...
0
votes
1answer
25 views
hiding process icon to run in background
I have a programs path..like utorrent and it pid too. I have achieved these values programatically using vb.net. I just want to hide their icon form tray just to run them in background and if possible ...
1
vote
0answers
21 views
How to check wether a control has been loaded?
I am creating a UserControl, which has a SetCameraCount method that can be used before and/or after the control is actually displayed.
If SetCameraCount is used before the control is displayed, then ...
0
votes
1answer
85 views
C# error : Value should be between minimum and maximum
I have a I have 2 panels with scrollbars. I am trying to use just one scroll bar to scroll both panels simultaneously. However I get this error :
Value of '2268' is not valid for 'value'.'Value' ...
1
vote
2answers
66 views
How to disable the right-click context menu on textboxes in Windows, using C#?
How to disable the right-click context menu on textboxes in Windows, using C#? Here's what I've got, but it has some errors.
private void textBox1_MouseDown(object sender, MouseEventArgs e)
{
if ...
1
vote
1answer
40 views
C# data bound ListBox
I have the following two Access tables:
Employee table:
EmployeeID
Name
etc.
Project table:
ProjectID
EmployeeID
ProjectDescription
Each Employee can manage zero or more projects.
I know how to ...
-3
votes
1answer
49 views
Render, view, annotate pdf files [closed]
I wanna start a project in which I want to do the following scenario:
opening an existing pdf file through c# winform,
display pdf contents in the form,
good quality and different zoom levels are ...
-3
votes
3answers
73 views
How Can i Distribute String in rectangle
I want to distribute string in rectangle.
Except each character set position
Rectangle displayRectangle = new Rectangle (new Point(40, 40), new Size (80, 80));
StringFormat format1 = new ...
-3
votes
4answers
57 views
How do I save user input to a txt document? [closed]
I would like to create a simple .txt file that is taking input from text boxes in a windows form
I am trying to create a 2 line text script that takes me at work to copy and paste all the different ...
1
vote
0answers
9 views
ClickOnce: Access to the path 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config' is denied
Our ClickOnce application has been working fine, however one of our users gets the following error:
+ Configuration system failed to initialize
+ An error occurred loading a configuration file: ...





