4,588 Topics
| |
I don't think I can use ClickOnce (or can I?) because it's a plug-in... | |
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 … | |
i would like to backup .exe files from 24hours ago using C#....what is the best method to do this? thanks | |
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 ... | |
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#? … | |
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 … | |
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. | |
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 … | |
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] | |
i am not able to write anti virus as filter driver can any one help me to write it in c#. | |
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 … | |
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..!! | |
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, … | |
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! | |
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 … | |
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 = … | |
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. … | |
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 … | |
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 … | |
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 | |
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 … | |
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] … | |
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 … | |
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 … | |
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 … | |
I was wondering, once you have created a system and now ready for use, how do you intergrate it with existing database | |
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: | |
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 … | |
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 … | |
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 … |
The End.