The windows-applications tag has no wiki summary.
1
vote
2answers
2k views
How to read file in windows application root directory in C#.net?
If i use Application.StartupPath or AppDomain.CurrentDomain.BaseDirectory
It Search in a bin\debug folder for the file
but I have to use a folder from my root directory "Resources\imagefile.png" in ma ...
0
votes
2answers
292 views
Google Maps how to get to show only one marker?
i've been dealing with this couple of hours and i still cant figure how to do it.
my objective is to display only one marker when searching addresses close to each other.
below you have the code i ...
0
votes
1answer
173 views
.NET windows app / google map api, cant search the same address twice
a while back someone from stackoverflow helped me come with a nice solution to using google maps api on windows application
html code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 ...
0
votes
3answers
155 views
How to listen device events in ASP .net website (In real time)
Is there any way by which I can listen to events fired by device (Speech mike, Kind of dicta phone) attached to client's computer in my ASP .net website?
I need to listen to real time events of ...
0
votes
1answer
199 views
Call a function/event or pass data to Website(C#) whenever value of variable changed in Web-service
I have one windows application which is listening to events of a device attached(on USB port) and passing event name to web service(In Real Time).
And I have a website on which I want to perform ...
0
votes
0answers
26 views
How can I develop Windows PC background tray apps using Python? [duplicate]
Possible Duplicate:
Quick and easy: trayicon with python?
Is there a Python API for Windows PC OS such as vista or windows 7?
I want to design a tiny application, which can look for ...
1
vote
1answer
362 views
Qt MinGW WIN32 to Visual Studio 2010
I have a project which was created for MinGW + Qt via cmake.
In CMakeLists.txt I have
add_executable (project-name WIN32 ${MOC_SRCS} ${HEADERS} ${SOURCES} ${RESOURCES} ${QtApp_RCC_SRCS})
If I try ...
0
votes
2answers
113 views
How to display a result of query in to a label in a windows application?
private void button1_Click(object sender, EventArgs e)
{
string costring = connection();
string MyQuery = "select SUM(balance) from dbo.KmtAccounts where ...
0
votes
1answer
189 views
How to delete a particular instance of FileSystemWatcher object
I have a windows application which uses FileSystemWatcher to monitor the change of files. Multiple file locations can be added and for each location a new instance of FileSystemWatcher is created and ...
1
vote
1answer
199 views
how to set .NET win app controls size properties to have same looking on different systems?
hi i have developed a windows forms application and I deployed it and I installed It on another system with different screen reselution and some of my controls don't look as they did on my own system ...
0
votes
1answer
309 views
Windows app with C# code behind with .ini dictionary to find all keywords
I have a Windows App that takes a word and searches pdf files for that word. I'm being asked to expand those words into an alias that also looks for other keywords for that alias. So if a user is ...
-2
votes
1answer
80 views
Need help in accessing and modifying parent form value
I have 1 label in Form1.
Now i am performing some operation in Form2.(My form1 is already open)
Now i want to update the label of Form1 through some method of Form2.
Form1 frm=new Form1();
...
-1
votes
1answer
327 views
how encrypt an executeable file and make that encrypted file executeable without using extra file for decryption?
how can we encrypt an executeable file using c# and make that encrypted file still executeable without using extra file for decryption?
mean the decryption methods shuold be inside file.
how can i ...
0
votes
0answers
17 views
How to resolve ComeventHandler Load Error in windows application
I have a windows application it is developed with X86 ,it is working fine.
Now i have change this from X86 to X64 and create .msi file ,
After install this project in 64 bit machine and run ...
0
votes
1answer
83 views
connection failed:SQLState:'HY100' SQL Server Error:0
I have developed one windows application using SQLSERVER R2 Express as database.I installed application in 8 computers,and I installed sqlserver managements studio on their server(windows 2008 Os) and ...
0
votes
1answer
129 views
modify html file in .net windows app
I have a map.html file that contains a script for google maps api v3, i've been trying previously trying to run this script using the webbrowser1.DocumentText and Webbrower1.Document.InvokeScript been ...
0
votes
2answers
86 views
how to create a loading windows with faded background in windows application?
I`m trying to create a loading windows with faded ( Blured ) background , that lock all the other windows
any issue for fade the background to lock other windows ?!
-2
votes
1answer
68 views
windows application finding sum
i have a table in data grid view with following:
ModelNo quantity rate(Rs) **Amount(Rs)**
------- --------- ---- -------
1 2 4 **8**
2 3 4 ...
1
vote
1answer
303 views
What is the name space of conversion.val in C#?
I have one text box in C# window application.And i wants to set a initial value of this text box is zero.
so i use conversion.val(textbo1.text) method.
But it gives a error in name space.
I use ...
0
votes
0answers
238 views
RDLC report not exporting when Web application called from Windows Application using Web Browser Control
Friends,
I've 2 Applications
1] Sample1 (ASP.Net Web application)
2] Sample2 (Windows Application, which contains a Browser Contol pointing to Sample1 web Application)
Here, I'm using RDLC ...
0
votes
2answers
300 views
How to combine 2 datatable and create a new datatable with that in Windows application?
I have 2 datatable DataTable1 and DataTable2, DataTable1 have the column as A,B,C,D and DataTable2 has the Column as P,Q,R,S I want to add both the datatable column and want to create a new datatable ...
0
votes
0answers
122 views
Run windows application in full screen mode
I am new in .net programming and sorry if my question is low level. Is there any options in visual studio for windows application to set and run the program in full screen mode? I tried these two ...
1
vote
3answers
726 views
session management in vb.net
I am looking for session management on my windows based application using vb.net. I google it, and found the similar result everywhere, and i got same error.
Session Management in VB.NET
Session ...
0
votes
1answer
47 views
Display items of collection sequentially with delay - WinForms
I'm trying to do this on Windows Application.
Can any one help how I can read two items at one instance from collection (for say, Products). Again two items after one minute and so on?
More Info:
...
1
vote
4answers
1k views
How to lock a textBox in a C# windows app (prevent the user from typing anything) (NOT disabling it or making it unvisible)
:)
I'm making a C# typing program
and I want the user to be unable to type anything when he types a wrong letter,
(I want the typing cursor to freeze at its position)
and when he presses backspace, ...
2
votes
2answers
2k views
c# a generic error occurred in gdi+ when save image
I try this code to resize my image:
ConvertToBitmap(txtImage.Text);
private void ConvertToBitmap(string filename)
{
if (File.Exists(filename))
{
var origImg = ...
0
votes
1answer
148 views
Converting .msg files to TIFF format
We have a requirement to convert .msg(outlook message format) files to TIFF image format. we required a dll which will do the conversion. we include the dll in our application and use the same to ...
0
votes
0answers
41 views
What's the best way to transfer data from windows application to browser?
I did some research, here what I found:
List item
Use local SQL storage (works fine for Chrome, Opera, Safari, but no idea if it'll be supported any longer; doesn't work for IE and FF at all).
Use ...
1
vote
1answer
128 views
TableLayoutPanel_CellPaint() event is not firing when i invalidate()/Update() TableLayoutPanel control
Can anyone give a solution for: TableLayoutPanel_CellPaint() event is not firing when I Invalidate()/Update() TableLayoutPanel control.
2
votes
3answers
2k views
Get IPv4 and IPv6 address of local machine c#
I am developing a windows application and I need to find the IPv4 and IPv6 address of local machine. OS can be XP or Windows 7.
I got a solution for getting MAC address like,
string GetMACAddress()
...
-4
votes
1answer
202 views
How to prevent the application from closing when clicking the close button in a C# windows app?
I am coding a Windows form based application in C#.
When I click on the red cross(x) on the top right corner of the windows it should not stop the execution of the program. It should instead go to ...
3
votes
1answer
200 views
Error in displaying background image of my windows application after deploying
I am building a windows application in Visual studio 2010 using C Sharp.
The problem is not with any code.
I am having a problem after deployment. When i made an executable .exe of the application it ...
0
votes
1answer
161 views
Two windows opening when page loads
In a Windows application, I'm creating two forms, named Form1 and Configuration_Form. First, I'm loading the Configuration_Form. In this form, I check the connection to a txt file. If the txt file has ...
1
vote
3answers
2k views
Text box only allow IP address in windows application
I need a textbox that only allows an IP address. I can create this in a web application but i can't do this in windows application. Please help me to do this..
-1
votes
1answer
167 views
How to hide password from user and only copy this in original form in c#
I want to create a windows or web application to hide password from users.
Actually I have 10 third party websites with logins. I just want that the password of each website is hide(encrypt) from all ...
-1
votes
1answer
1k views
Open source tool for automation of windows application? [closed]
we are using test complete for automation of desktop application but now we are looking for some open source tool for this. can any one suggest.
0
votes
1answer
2k views
How to get device information using Onvif library c#?
I am making a c# windows application which collects the devices connected to my network using an open source library Onvif.
i am doing in this way.
ServicePointManager.Expect100Continue = false;
...
0
votes
1answer
340 views
How to get login into website from windows application C#? [closed]
I want to make a windows application in C# using .NET v4.0 which open the default explorer with my yahoo mail account that is logined automatically.
Simply, when i click on the button " GO TO Yahoo!" ...
0
votes
1answer
854 views
Alpha transparent window form
I got following code to load a PNG with alpha channel on to a form and reshape a form to match alpha channel.
Public Function applyAlphaForm(ByVal f As Form, ByVal bitmap As Bitmap, Optional ByVal ...
0
votes
2answers
169 views
ApplyCurrentValues method issue when scope changes
I am writing a C#.Net windows application using EF for communicating with SQL Express. I have a Contacts table in my application. For editing a Contact I have called a new windows form by ...
0
votes
1answer
369 views
Windows Application in Gujarati language
I want to develop Widows Application in Gujarati language. But i don't have any idea how to do this?
So Can any one give me suggestion what to do to develop Desktop windows application in Gujarati ...
-1
votes
1answer
119 views
good libraries for windows applications in c++ [closed]
I have been learning c++ for more than 8 months and I think I have got grip on every essential concept of c++. I have created some good console based application but now I want to build GUI ...
-1
votes
1answer
327 views
How do I write a Windows application that can Edit PDFs? [closed]
I have a text box. When I input a path to a PDF in this text box and click the Insert button, it should open the PDF and display it in my application for editing.
How should I do this?
-5
votes
3answers
417 views
Paste a serial key into multiple textboxes [duplicate]
Possible Duplicate:
Pasting into multiple text boxes
I have a serial key in this form
xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
and 5 textboxes in my windows application. When I copy serial to first ...
1
vote
1answer
1k views
change font size in windows application
Here below :
My windows application have functionality to change language but my problem is that when my application in English fonts look much fine than in Hindi fonts.
Below is the screen shot ...
0
votes
1answer
403 views
C# Windows Application - Drag and Drop in web browser
I am very new to microsoft technologies. my problem is-
I have a web browser control on a form. And i have a treeview control on the left side.
The treeview will consist of text node like 'Textbox', ...
0
votes
0answers
91 views
Copying from one table to another without overwriting the existing records
I have two database and two tables called Master and secondary in sql. I want to copy the information from master to secondary .If there is a new record inserted in Master i want to copy that also to ...
1
vote
2answers
1k views
How to change datagrid cell fore colors as dynamically using c#
I know this is a stupid question but i can't get my desired out put.Actually i want change the datagridview cell fore colors as dynamically for this i have logic like this
...
-2
votes
1answer
810 views
How to make data gridview as a Calendar weekly view in C# Windows Application [closed]
I am developing a Windows application in C#. I have one requirement to display calendar with Weekly , monthly and daily view. I have downloaded many calendars from codeproject, but none of them meet ...
0
votes
2answers
1k views
Update particular Cell in Excel file
I have created a windows application in c#.
Now I here I am using excel file as a temporary database. so I am able to read it fine but having no idea of updating the cell value in that file using c#.
...


