4,588 Topics

Member Avatar for
Member Avatar for mehbube.arman

Hello I am new to T SQL. I tried some project with sql command using C# coding. But now I am willing to consider running T SQL commands like making procedures using C# coding. ie. I want to my program run T SQL query/command. What/ How to do this? Thanks …

Member Avatar for cale.macdonald
0
64
Member Avatar for vinnitro

I am beginner with C# language & currently using WROX's beginning Visual C# 2010 But sometimes it is hard to understand. Is there any book that can help me?

Member Avatar for vinnitro
0
211
Member Avatar for dineo.makgaretsa

Hi I'm a new in this programming thing and I have to create a car plantation management system yet I'm lost on how to out it together and if I should be using classes in my app

Member Avatar for hericles
0
58
Member Avatar for bhagawatshinde

Hi Guys, I have an xml file contains the imagedata attribute. now while reading xml file using dataset i was setting this field to string and insert it to another table that have also image field. when i am tring to retrive this image it's not a actual image. <ImageData>/9j/4AAQSkZJRgABAQAAAQABAAD//gA+Q1JFQVRPUjogZ2QtanBlZyB2MS4wICh1c2luZyBJSkcgSlBFRyB2NjIpLCBkZWZhdWx0IHF1YWxpdHkK</ImageData> …

Member Avatar for gusano79
0
332
Member Avatar for VasquezPL

I know how to create groups, the problem is that I need to create Groups with diffrent scopes. For example: Security,Universal or Distribution, Global I have found the code, but I dont understand the "enum" part. How to join two enums if I want the group (for example) to be …

0
200
Member Avatar for Chatthanz

This is a Simple one Line code for inserting current System date in to a text box: protected void Page_Load(object sender, EventArgs e) { TextBox1.Text = DateTime.Now.ToString("dd/MM/yyyy"); }

Member Avatar for Mike Askew
0
149
Member Avatar for mcuk

Hi, I am looking for advice on the best place to start with programming. I work for a web design company and currently create database powered sites using PHP and MySql. I seem to learn very quickly with the right resources. When I started many years ago in PHP, I …

Member Avatar for abhishekde.nasa
0
112
Member Avatar for Robert955

I've created this code which should look in the Songs folder and add any .mp3 file to a list. However when I test it it keeps saying File not found and pointing to the exact file it cant find with the name of the song while I dont mention this …

0
189
Member Avatar for iwishimgoodasu

//I have this code //In my Form1 I have textbox and a button namespace Passing { public partial class Form1 : Form { Class1 class1 = new Class1(); public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { class1.Name = textBox1.Text; Form2 form2 = new Form2(); form2.Show(); } …

Member Avatar for nmaillet
0
255
Member Avatar for bodazhao

hi i'm a beginner for C#, i have learned some of delphi and want to start learn some basic of C#, so i want make this app where it generates random number, can people help me get started with the code, it will help me alot the app is simple, …

Member Avatar for Mike Askew
0
198
Member Avatar for lahidzi

Hii.. I am doing project in java and i want to convert it to c#.is it any option available? Thank you..

Member Avatar for lahidzi
0
52
Member Avatar for emokidzz

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.OleDb; namespace Database { public partial class Form2 : Form { public Form2() { InitializeComponent(); } int baseExp = 200,currentExp,lvl=1,str,intel,dex,armr,min=10,max=25,minimum=2,maximum=3; public void levelUp() { min += minimum; max += maximum; str = int.Parse(strength.Text); …

Member Avatar for Mike Askew
0
295
Member Avatar for BigHeart

i have a process to use zebra printing machine.. i dont have any idea from where and how can i do this process.. can any one help .... i want to print my sql table id with barcode in zebra printing machine.... i am very much confused how should i …

Member Avatar for pritaeas
-1
69
Member Avatar for tricket_7

I want the btnLogin_Click event to verify the username/password from the ms access database, if it matches it will take them to a certain page, if not it will give a message that user/password is incorrect try again. I really don't know where to start, can you please help first …

Member Avatar for notconfirmed
1
248
Member Avatar for Dylxy

I am looking for good C# .NET 4.0 database tutorials. I want to learn working with a database in C#, i already know SQL from another language PHP. Thnx

Member Avatar for king03
0
239
Member Avatar for pyeri

I have written a simple and minimalist HTTP proxy server that runs on command line. In the Start() method, a TcpListener blocks until it gets a client request and creates a new thread (ThreadHandleClient method) that processes this client, fetches its url and relays data. The trouble is in the …

0
84
Member Avatar for hfxdkhrxtr

hi, i want to change my ip address in every 10 minutes so please give me code to change my ip address in c# windows form application.

Member Avatar for Cap'nKirk
-1
212
Member Avatar for hfxdkhrxtr

How to implement (Browse from path "c:\Proxy List.txt") Proxy List in C# WebBrowser control/Component. What I want to know, is how to implement proxy-list from "c:\proxylist.txt", so my C# webBrowser control use this proxy for browsing when its run. I also don't want to change proxy through registry ... because …

0
158
Member Avatar for Rasool Ahmed

Hi guys, I am developing a software and I want to make it in good appearance!!!! As you see most of programs have a beautiful skins, I want too!! I have google it in days and I found a dll file called "DevComponents.DotNetBar2.dll" ( may you have heard about it) …

Member Avatar for Rasool Ahmed
0
339
Member Avatar for abbas.aleryani

Hi all when i execute my code it gives me this error " no data exists for the row column" can anyone please help me,,,am using access database here is my code: private void UpdateStudent_Load(object sender, EventArgs e) { OleDbDataAdapter da = new OleDbDataAdapter(); da.SelectCommand = new OleDbCommand("select * from …

Member Avatar for Cameronsmith63
0
456
Member Avatar for system_Broken

I WANT SEND ITEMS INTO DATABASE WITH ONE TIME CONNECTION OPEN ? MYCONN.OPEN(); FOR(INT I =0; I < CODE.COUNT ; I ++) { DB.SUBMITITEMS(CODE[I]); //IS IT RIGHT IF I HAVE 100 ITEMS TO SEND DATABASE WITH ONCE TIME OPEN CONNECTION OF DATABASE; OR I NEED TO REOPEN AND CLOSE CONN …

Member Avatar for M.Waqas Aslam
0
144
Member Avatar for pallas_athena

Help! I need to run my function every 5 mins but I don't know how and what to use. I tried using Restart but my whole application ill restart too.

Member Avatar for M.Waqas Aslam
0
110
Member Avatar for lloydy76

Hi there, im new to c# and have been trying to create a calculator without a switch statement, using the operator 'op' as a variable, but i cannot get it to work, here is my current code: [code] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; …

Member Avatar for samsylvestertty
0
6K
Member Avatar for notconfirmed

Hello, I have a problem to this html code.I want to get only the data inside the href,but the data is dynamic. <a title="Click here to see docket information" href="/ccm/do/docket?county=65&amp;data=eedd78d10fd9da341e05b25b48b62013">652012CC000006CCXXXX</a> I am not really familiar in regex.I am using this code to extract the html inside the href. MatchCollection m1 …

Member Avatar for Mike Askew
0
1K
Member Avatar for bestonearth

hello all the members, i'm new to .net and i want code for a window application in c# for entering the userid and password in windows form

Member Avatar for Mike Askew
-1
205
Member Avatar for vikas_3r

I not going to print any document.I want to retrieve details of usb-printer.How can i get connected with usb- printer with c# programming to retrieve details?

Member Avatar for C#Jaap
0
477
Member Avatar for Karkalash

Hi All: I'm wondering if anyone knows any usefull links to articles I can read on coding multiplayer for XNA. I'm looking for something that would teach me how to code for more than two players. The idea of what I'm working on is for a standard 4v4 deathmatch over …

Member Avatar for jLocke
0
465
Member Avatar for hmagnum

while (HullShipA > 0 && HullShipB > 0 && HullShipC > 0) { // do whatever i wanna do } Console.Writeline("End Game"); So i'm kinda new to c# but here is the deal: In this simulation, ships attack eachother for damage and the way it is, as soon as 1 …

Member Avatar for hmagnum
0
115
Member Avatar for thak123

I want to create a full html5 file with the fields fetchg from my database. I cant get to create a file directly . Can anyone help me.

Member Avatar for Mike Askew
0
299
Member Avatar for sridevi boya

The folders contains different images in them and the file names may match from those 2 folders and we should be able to display those images in 2 picture box having the same file names randomly. Using C# visual studio 2010. Please help me out with this code....!

Member Avatar for Cameronsmith63
0
207

The End.