4,588 Topics

Member Avatar for
Member Avatar for euroazn
Member Avatar for Michael27

I'm trying to create login form in C#. I store username and password in SqlServer 2008 express using the stored procedure [CODE]ALTER procedure [dbo].[InsertNewUser] ( @UserName varchar(30), @Password varchar(30) ) as If exists(Select 'True' from Users where UserName = @UserName) begin --This means that the user name is taken select …

Member Avatar for arunkumars
0
168
Member Avatar for aragmus

i would like to backup .exe files from 24hours ago using C#....what is the best method to do this? thanks

Member Avatar for kvprajapati
0
48
Member Avatar for kanjali

Hi, Iam new to java as iam working for dotnet C#. Can any body tell me the software to convert java code to C#. Please, iam in very much need for it. Thanks in advance, Anjali ...

Member Avatar for masijade
0
297
Member Avatar for jhai_salvador

Hello!.. I am a VB6 programmer and I want to learn basic of C# Programming. So can anyone help me out?.. I just want to learn on "How will I do this in Visual C#".. this is a sample code from VB6, now, how will I do this in C#? …

Member Avatar for jhai_salvador
0
114
Member Avatar for Awah Mohamed

hello guys , i need your help i dont know c# and i want to learn it but before that i want to know what i can do with c# so please guys tell me exactly what i can do with c# and can i create a full website with …

Member Avatar for Lusiphur
0
84
Member Avatar for sakhi kul

Hi , can anybody tell me any valid link to download Ldap libraries for c# I am trying many links but It takes much time to respond and error occured as session timed out.

Member Avatar for Lusiphur
0
75
Member Avatar for dhawalchauhan

Hi I need an urgent help...... I Have made a project on C# where i have use MS-SQL as a database....after that i have published the program which creats exe of my program.......after creating exe 1) I download .net framework 3.5 to friends computer. 2) Then i install MS_SQL Server …

Member Avatar for srikaaanth
0
87
Member Avatar for isprog

I WAS WONDERING IF SOMEONE COULD HELP ME WITH MAKING A CODE FOR THIS TYPE OF WINDOWS APP PROGRAM. [URL=http://img692.imageshack.us/i/90497460.png/]CLICK HERE[/URL]

Member Avatar for Lusiphur
-1
199
Member Avatar for onlinessp
Member Avatar for onlinessp
1
90
Member Avatar for cafekko

On this project. I used XML as a database and AJAX for display.. I integrated this website [B]Here's the full source code.. please scan it for your safety.[/B] [url]http://www.mediafire.com/?nh14oi1mmeo[/url] First, radiobuttons is assigned before page init.. [code] public partial class Default : System.Web.UI.Page { //Assign values as a specific Dynamic …

Member Avatar for Lusiphur
0
221
Member Avatar for Prashant20

Hi..!! i have created a Customer Details form in C# asking detail about customer...One of its field asks for customer email.. Please tell me how to validate a email id..Thnx..!!

Member Avatar for Abhijeet Thorat
1
1K
Member Avatar for MeetMak

Hey all, I stored a table in mySql 5.1 having a cloumn named hindi_root, storing some data in hindi. I want to show this data in my C# windows application in a textbox/datagridviewer. i am able to access this table but i see only boxes in stead of hindi characters, …

0
58
Member Avatar for euroazn

Suppose I have an Outlook account that is logged in at the computer. How can I send an email from this account to a given contact (if this can be a group, that would be really nice) via a C# program? Thank you very much!

Member Avatar for euroazn
0
183
Member Avatar for kurtzky

Hey guys. I have a question. In my program, I'm calling a Process (Internet Explorer) on button click, but I want to customize the size of the IE window being opened to something like 800 x 600 pixels. Do you know how do it? Below is my base code. [CODE]Process …

Member Avatar for Lusiphur
0
3K
Member Avatar for coffeeMan21

I am getting an error, Inconsistent accessibility: return type " " is less accessible than " ". Not sure what is going on, I would appreciate some help [code] public List<point2d> get_myList(ReturnData3 rd) { List<point2d> points = new List<point2d>(); List<double> x = rd.X3; List<double> y = rd.Y3; int h = …

Member Avatar for vdeych
0
610
Member Avatar for dima shawahneh

Hello every one I am new to Bluetooth programming .. so I need your help plz what I want to do is to make an application programmed in C#.net this application will search for devices with bluetooth on them , then start a secure channel with a mobile via bluetooth. …

Member Avatar for Ketsuekiame
0
167
Member Avatar for phoenix911

Hi i have a program that transforms my xml files with the stylesheets i applied and saves them as html file. i also used cooktop to create my stylesheet as well as to see the result... my problem is, that when i transform it, i have a <hr />tag, the …

Member Avatar for phoenix911
0
100
Member Avatar for ayesha25

i have an excel file with two columns in it. what i want to do is to draw a graph in c# based on the values of those columns. say i have columns targetPrice and acutalPrice in excel. i want to draw a graph with prices on y-axis and days …

Member Avatar for kvprajapati
0
102
Member Avatar for Mikey12345

Hi im new to c#.. just wondering how to convert this vba code:- [code] Sub AddUP() x = 1 For i = 2 To 100 x = x + i Next i ActiveCell.Value = x End Sub [/code] Best Regards

Member Avatar for Zinderin
0
168
Member Avatar for Zinderin

So, a single user application, all data is local, no remote access .... If a go with an Access file (DB), from the user's perspective, they simply install the app and they are good to go. Is it the same if I go with a SQL DB, or do they …

Member Avatar for Zinderin
0
166
Member Avatar for johndoe1985

Boas. Estou com uma dúvida para o qual preciso mesmo muito da vossa ajuda. Criei um report que inclui dados de 1 trabalhador (id, nome, residencia, bi, categoria profissional, etc...) e preciso de fazer o seguinte comando SQL: [B]SELECT * FROM Trabalhadores WHERE id_trabalhador = ' + valor + '[/B] …

0
85
Member Avatar for Lusiphur

I've been building a custom [URL="http://bariby-quance.com/blogged.aspx"]journal application[/URL] for my website which has a reply sub-app where visitors can post responses to my frequent posts. In the response sub-app I want to be able to incorporate formatting buttons (bold, link, colour, etc) that will take selected text within the textbox and …

Member Avatar for Lusiphur
0
572
Member Avatar for hgbreton

I need to create a SOAP wrapper of the form [CODE=xml] <SOAP-ENV:Envelope xmnls=........><SOAP-ENV:Body></SOAP-ENV:Body></SOAP-ENV:Envelope> [/CODE] My C# code to do this is as follows [CODE=C#] XmlElement soapEnvelope = document.CreateElement("SOAPENV", "Envelope", "http://schemas.xmlsoap.org/soap/envelope"); XmlElement soapBody = document.CreateElement("SOAPENV", "Body", "http://schemas.xmlsoap.org/soap/envelope"); [/CODE] This works fine for the Envelope part but then adds a spurious xmnls …

Member Avatar for kvprajapati
0
451
Member Avatar for Jesi523

Hi...Someone please help. I have a web site that is based on information in a database. It is used to sign people up for events or classes. So an event is created, a link is provided with the query string for that event, then people can view the different times …

Member Avatar for Jesi523
0
247
Member Avatar for elizabeth mwash

I was wondering, once you have created a system and now ready for use, how do you intergrate it with existing database

Member Avatar for finito
0
441
Member Avatar for octavia

Hi all, Any ideas for video file encryption using AES (symmetric) ???????????? I seen only data file encryption. I wanna encrypt video file and decrypt as well ..... Who wants to help such a new beginner ???????/:) PLssssssssssssssss :confused:

0
58
Member Avatar for jeeter19

Hi, I'm trying to send a MySQL query string from a C# application to a PhP submission page via POST. The problem I am receiving is when I try to use the WHERE clause it hangs up at the string I'm trying to compare to. [B]The Query[/B] SELECT * FROM …

Member Avatar for pulketo
0
146
Member Avatar for craigp1

Hi, I'm writing a steganography app in c# that will hide an image and text covertly inside the least significant bits of a bitmap image. I'm trying to convert this code snippet i found in matlab to c# but dont know how. Does anyone know how to convert it to …

Member Avatar for vdeych
0
144
Member Avatar for kp_it_simpl

I am a new student using MS Visual C# 2008 Express Edition. I am trying to run an example from my textbook. The VS new console application creates the following code and I add the new code as per my comment below: I get the following error twice: Error 1 …

Member Avatar for Lusiphur
0
166

The End.