4,588 Topics
| |
Hi I have developed application in .net framework 3.5 WPF. Well, you know WPF also requires .net framwork 3.5 SP1. Now it's works fine on my computer. But i need to ship it the client. What will be the software requirements at the client side to run my application. Is … | |
Following is the Objective of my program 1.Creating a TCP Server 2.Multiple clients can attach to it 3.Clients send data to the TCP Server and the server in-turn send the same data to all other clients I have the following problem When run on the same machine with 10 to … | |
I think my thread title is a bit incomplete. coz these are my questions.I need answers to these questions for the completion of my thesis. [B]I Know this is sort of a long message but im detailing the situation for better understanding of my questions.[/B] And because these thread is … | |
HEy, I am new to C# and dont know much about it. I am facing a problem while running my code in Visual Studio 2008. The problem is that the screen disappears immediately when the program ends. please help me. Thanks in advance. | |
Hay i am new to the developnment currently i am working on datagrid i just want to know how to select a row on a datagrid using check boxes | |
kindly if any one help me to create a calculator which is consaole based yet simple.. Regardz all... Waitin for ur kind help.. | |
hello everybody, this is my first post in this forum and i hope to find help. i'm beginner in c# and i search for simple tutorials in databases access in c#. | |
In this task,the csv file has retreived and it viewed by using datagrid. but now how we can take a specified header name from the datatable?? | |
I want to create a login form with password strength meter ... Please help me. | |
I'm stuck trying to get a C# USB MIDI link to an Audio Mixer. Is there some sort of C# class or API that I can use to send and receive MIDI commands? Thanks. | |
hi All, I m new to c#.I m using a HTML table in web browser control and wants to get the rowid of the clicked row in HTML table.bt dont have any idea how to get. IS there any method for getting the row id of the clicked cell. Please … | |
Hi, i have a window service in C#,in which i am fetching the html from diff URLs, now i need to click the button on html page for pagination. i tried with web browser, but window service is not firing the Browser_DocumentCompleted event, does C# Window Service supports Browser_DocumentCompleted event … | |
Hi I Have a problem in Windows application in .net. I have a PDF file which is stored in my local drive. At run time i need to print that PDF Document using C#. Can you help me out from this problem ? Help appreciated.. thanks in advance.. | |
hi, i wanted to work on FormView control in asp.net with C#.So plz give me sample project with code details.Some basic infromation about FormView. Thankx & regards A.Santhosh Kumar | |
Hello everybody, :) I'm trying to import an access database to mySQL by using c#, I'm using this software: MS Access to MySQL from Bullzip, and it seems to be working ok; by using c#, I can display all data from tables, using this connection: [CODE] private void btndisplayBooks_Click(object sender, … | |
Hello everyone! I know how to use a Timer class: [CODE=C#]static void Main(string[] args) { System.Timers.Timer MyTimer = new System.Timers.Timer(); MyTimer.Elapsed += new System.Timers.ElapsedEventHandler(MyTimer_Elapsed); MyTimer.Interval = 2000; MyTimer.Enabled = true; //etc. } static void MyTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e) { //do something every 2 seconds }[/CODE] What I like to do … | |
A small Windows Application to show you how to play a wave (.wav) sound file. I am using the C# IDE from SharpDevelop and the runtime dotnetfx 1.1 from Microsoft, both free downloads. This forms a small and fast student system to write and debug C# programs. From there you … | |
i was trying to connect two computers.. i used synchronous server and client with the help of some socket programming.. but whenever i try to connect to the server which is on a remote computer an exception is thrown whereas it works fine if both server and client are on … | |
Hi I have a problem which i cant seem to solve or font really know where to start im only starting learning c# so dont have a lot of experience. Basically my problem is that i intend to loop through a directory of .tif images which contain BW and Colour … | |
I am just new in C#, somebody can you give me code for MS SQL server connection, on how to call records, add, edit and delete records...THANK YOU | |
I have the following form, but my data is not getting inserted into my database. Can anyone help? [code] <%@ Page Title="Dorknozzle Help Desk" Language="C#" MasterPageFile="~/Dorknozzle.master" AutoEventWireup="true" CodeFile="HelpDesk.aspx.cs" Inherits="HelpDesk" %> <asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server"> <h1>Employee Help Desk Request</h1> <asp:Label ID="dbErrorMessage" ForeColor="Red" runat="server" /> <p> Station … | |
Dear Friend, i have a crystal report, in which i have amount of Different Items, now i want to calculate total amount of all that items and show Total Amount at the end of the Report. so please tell me how can i calculate Total amount of different items in … | |
I have a string like "system\admin". Now I want get the "admin" part alone from the string using IndexOf() method.Can anyone please help me out.Thank you. | |
Hi , I am busy converting a VB6 project to c#. Now in vb6 , the columns have intellisense like so... [code=VB] rsIBBSData!DrOrCr = 1 'rs is the recordset [/code] But in c# , i would either have to create an sql query , or use datarow with a column … | |
I want to develop my website using ASP.net but which is best and easy to use with ASP.net C# or VB.net. | |
Hi, I have wrapped Web Test requests in transactions, example: this.BeginTransaction("00_002_ClickSignInButton"); WebTestRequest request2 ... WebTestRequest request3 ... this.BeginTransaction("00_002_ClickSignInButton"); Normally, in Loadrunner, the transactions think times are coded at the end of the transaction. Example: lr_start_transaction(".....") .... lr_end_transaction("...",LR_AUTO); lr_think_time(10); I need to know how the above can be done in Visual … | |
Hey there folks. I'm in the middle of learning C# using the book 'C# and Game programming: A Beginner's Guide' by Salvatore A Buono and I've come to a bit of a problem. The example code for nested if and else-if statements does not work as intended. I could move … | |
hiiiii I am making a C# .net window application and i am using VS2008...... Can anyone tell me how can i do good designing or there is any software with the help of that i can improve the designing of window applications........ kindly help me or suggest me some link … | |
This code works fine and can be called numerous times without any problems. However, if the bitmap is resized (made bigger), I get an access violation. This is not the case if the bimap is made smaller. I can confirm that the BMPSize & BitmapBytes array size tally at all … | |
Now I use a C++ code where I save a color like this: [code] public: System::Drawing::Color ColorSaved1; ColorSaved1 = textBox1->BackColor; [/code] I wonder how I can convert this to C# ? |
The End.