4,588 Topics

Member Avatar for
Member Avatar for mmazeemahmad

Hi all, i have a scenario in which there are two subscribed users (to database) in my web app.......now if one of it wants to send a message (just like mail but not sms) to another without using any email account...... but with the help of that website and some …

Member Avatar for hericles
0
317
Member Avatar for bhagawatshinde
Member Avatar for peter_budo
0
274
Member Avatar for sam1

Currently sending emails and setting the Return-path of an email(System.Net.Mail) works if i put : [CODE]MailMessage msg = new MailMessage(); msg.Sender = new MailAddress("not-deliviered@sample.org"); msg.Headers.Add("Return-Path", sReturnPath);[/CODE] but if I send a successful email it would say delivered on behalf of the email above.... any ideas how to resolve this not …

Member Avatar for thines01
0
237
Member Avatar for torkolort

I'm creating a small java program that use some special graphics to draw a picture to a certain format. The program will be run as a jar file, and needs some graphics definitions as arguments at initiation. These definitions exist in a small C# class, and should contain only small …

Member Avatar for peter_budo
0
212
Member Avatar for jemz

Hi, I am new in this C#, and i need to know what are the first thing should i know in C#.and what program should i make for the beginners like me. Thank you in advance.

Member Avatar for jemz
0
209
Member Avatar for Lowchernhwee

well i check all the web, i still do not know how to save it as a jpg and if possible, load and edit a picture from jpg here is a simple code that i done for drawing...... [CODE]namespace @try { using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using …

Member Avatar for zeroliken
0
145
Member Avatar for Ehtesham Siddiq

hi, i want to add some static text in my C#.Net code.But i want some text to be subScript and some to be SuperScript.. Please guide how can i do this?

Member Avatar for lxXTaCoXxl
0
419
Member Avatar for akenawell85x

I'm a student just starting my first C# class in school, our first assignment was to make a simple console app to convert temperatures from Fahrenheit to Celsius. Being the over-achiever that I am, I decided to make a second project and create a form app. It's a very simple …

Member Avatar for akenawell85x
0
217
Member Avatar for krizhan4u

i already have sql database ,server,login,password,,,i have to check from visual studio windows form,,,,to check test connection

Member Avatar for thines01
0
29
Member Avatar for bhagawatshinde

Hi Guys, I am developing an windows application but their is problem when package is installed on client machine mainly for vista and windows 7, i am set the screen resolution to 1024 X 768 but in windows 7 and vista if magnifying tool is large then forms get display …

0
68
Member Avatar for ilmkidunya

hey Dear members i want to learn asp.net but i am little confuse which is best for beginner any easy is it VB or C#

Member Avatar for ilmkidunya
0
450
Member Avatar for glut

Hello. I have a really weird problem. Whenever I try to get if the user pressed down on the mouse (clicked), via GetAsyncKeyState(), it only shows it some times. I tried the exact same code, but with another key Ex: A, and it works fine. Here is the code. [CODE] …

Member Avatar for glut
0
137
Member Avatar for suneye

Hello, I am not a completly new person to C# but I have some good background information about C# and it's contents. What i want is to be guided about what to solve how to develop my skills . can any one give me tips and put me on the …

Member Avatar for suneye
0
115
Member Avatar for Peelu pags

Can anyone help me in plotting EEG waveforms in C#??? I am a bit new.. I have got a libraray for plotting but really dont know how to plot

Member Avatar for Peelu pags
0
147
Member Avatar for compulove

I am trying to make a registration form that when a user enters in their information and clicks the submit button the information will go to someone's email. If someone could send me a website with tutorial on this or lead me in the right direction that would be great! …

Member Avatar for Pri Bhowmik
0
228
Member Avatar for Behseini

Hi guys, Having .Net Framework installed on target computer I can not run C# .exe file generated from VS 2010 express on other computer. Please find the image of error and installed .Net Framework on flowing [URL="http://behseini.persiangig.com/Exe.png"]Link[/URL] Can you please let me let me know why this is happening? Thanks …

Member Avatar for skatamatic
0
330
Member Avatar for c++_fem

Hi, I'm using Matlab 2011a and VS 2010. I have to call Matlab functions in my project. The problem is that I can't seem to find a solution works with my Matlab version. Has anyone succesfuly integrated Matlab 2011a with c#?

Member Avatar for c++_fem
0
376
Member Avatar for uchiha203

Hi, I would like to create a web-based directory using GridView. The concept is same on Windows Explorer where there are Folders and Subfolders. The thing is, I will be using it on Binary files on the database. I'm not quite sure about the database structure if the user is …

Member Avatar for uchiha203
0
223
Member Avatar for ddanbe

When you want to draw something on a form you need a Graphics object. But a Graphics constructor isn’t public and if that is not enough the Graphics class is also sealed! This means you can’t create a Graphics object via the new keyword nor can you derive from the …

Member Avatar for skatamatic
0
4K
Member Avatar for PoovenM

Greetings! I have a win32 native dll (perhaps that's not the correct term - it's basically a C compiled dll) that I'm accessing in C#. The method signature of the C code (not the actual signature in the dll): [code=C++] char* TestMethod() [/code] I'd like to access the [B]char*[/B] as …

Member Avatar for gusano79
0
632
Member Avatar for PoovenM

Greetings! I have a C# dll generated from a .resx file (I believe it's called a satellite dll). This stores simple key to string mappings (used for language localization). I was wondering if it's possible and feasible to access the information stored in the C# dll from a C++ unmanaged …

Member Avatar for PoovenM
0
938
Member Avatar for PoovenM

Hi there, I'm trying to access a resource only dll (compiled with the [i]/NOENTRY[/i] linker option) within C#. The dll file was created using a rc file that contains a [b]STRINGTABLE[/b]. I used [b]CComBSTR[/b] to load the string resource from the dll in C++; I'm not sure how to do …

Member Avatar for thines01
0
188
Member Avatar for Shillz

I have been trying to send mail through my c# website, but kinda stuck up somewhere and not able to figure out the problem. :-/ M getting SmtpException saying "Failure sending mail". Please help.:icon_confused: [CODE] MailAddress fromAddress = new MailAddress("abc@gmail.com", "n1"); MailAddress toAddress = new MailAddress("xyz@yahoo.co.in", "n2"); const string fromPassword …

Member Avatar for Shillz
0
205
Member Avatar for jain1.anuj

hi, i am working on a USB HID KEYBOARD device. i want to register the device for the notification whenever it gets attached and removed from the system. i want to register it for all windows operating system(for all 32 and 64 bits) starting from XP. it's a proximity device. …

0
62
Member Avatar for surferxo3

[CODE] public partial class DataTrialForm : Form { private String connectionString = null; private SqlConnection sqlConnection = null; private SqlDataAdapter sqlDataAdapter = null; private SqlCommandBuilder sqlCommandBuilder = null; private DataTable dataTable = null; private BindingSource bindingSource = null; private String selectQueryString = null; public DataTrialForm() { InitializeComponent(); } private void …

0
69
Member Avatar for surferxo3

I have the following problem: I have sample form with reportViewer on it & report type is rdlc report on c#. I added a new dataset then selected tableadpater on it then selected the database from mysql and I selected the Filldata method & provided a query to retrieve data …

Member Avatar for surferxo3
0
185
Member Avatar for baby_c

hi friends.! need little help. I couldn't find the way to check a stack is empty before pop up a element. when my program is running its give a error. please help me guys.. thank you in advance....

Member Avatar for thines01
0
4K
Member Avatar for shapna

Hi, I am very new to C#.I am trying to create a webform to save data in SQl server 2008 using c#.My problem is when i click on the save button, the code saves the 1st record every time instead of saving the new record.all my textboxes are showing the …

0
38
Member Avatar for Macksh

Hey please help me, I'm beginner to C# programming using visual studio 2008 ,i wanted to develop student information management system,so i wanted to create a table in sql database and maintain all information.so i created a new project and went to create sql new database, i right clicked on …

Member Avatar for thines01
0
179
Member Avatar for VidyaYadav

Hi, In my application i am taking multiple image files from user using openfiledialog and display those image files in flowlayoutpanel. After pressing on Insert button i used to copy all those images in a folder (C:\Images). When there is no file exists the file get copied easily, but if …

Member Avatar for technext
0
678

The End.