4,588 Topics

Member Avatar for
Member Avatar for farsen

Hi. First of all, I´m new to asp.net. I have this .aspx page in my Visual Studio 2008 web project solution, with a media player control and a button which invokes it and starts playing a file: [CODE] <HTML> <HEAD> <script language="javascript" type="text/javascript" for="Player" event="onclick"> return Player_onclick() </script> </HEAD> <BODY> …

0
86
Member Avatar for roswell67

Hello, I am having trouble converting my "MySQL" statement to a prepared statement. here is the part of the code that i need help with. How Do I make below statement a prepared statement and can actually read the result afterwards. this way everything works perfectly, except that its not …

Member Avatar for eliza81
0
1K
Member Avatar for shabeg

Hi, I am creating an object of AxShockwaveFlash [code] private AxShockwaveFlash flash; void init() { this.flash= new AxShockwaveFlashObjects.AxShockwaveFlash(); } [/code] and releasing it in [code] protected override void Dispose(bool disposing) { if (_flash!= null) _flash.Dispose(); } [/code] but when i am using .Net Memory Profiler i am getting following message …

Member Avatar for jonsca
0
246
Member Avatar for umair125

i want to connect SQL server in C# application plz help how can i Connect DB in C#???

Member Avatar for avirag
-1
203
Member Avatar for priyanka_anand

Hi, I want to run the calculator.exe file from my c# webapp.I did this by using the hyperlink control and the location of the exe is the navigate url and is working nice. But it gives the dialog box telling ,'one or more files can harm your computer ...' since …

Member Avatar for kvprajapati
-1
78
Member Avatar for sid78669

I am working on a automated utility for students which works with their calendar. I have implemented the option by which they can set a time at which the PC will shut down. I was wondering if there is any library or dll or anything out there that might also …

Member Avatar for mahmoud_wow
0
199
Member Avatar for reyarita

good day ahm guys do u have any idea how to make GUI in console application in c# I've tried searching in internet but i couldnt find it. Mostly VB. Pls guys need your help for my sales inventory system

Member Avatar for avirag
0
174
Member Avatar for giahmed

Dear all, I am really stuck with inserting record into access database using ASP.net and C#, as in university I am only allowed to use access. I am trying to create new room reservation for meetings its not a hotel room, I have two time slots AM and PM and …

Member Avatar for giahmed
0
465
Member Avatar for makdu

Hi, in order to organise the functions based on its usage, i want to add a new code file to the project. I tried to add a new code file and gave a name to it and then wrote a function in it . This function is called from another …

Member Avatar for mahmoud_wow
0
233
Member Avatar for j4jawaid

Can anyone tell me that how can i open a site in webbrowser component of c#. Usually i open the site easily using the following code webBrowser1.Url = new Uri("http://google.com"); But now i want to access a site which is not allowed to be opened by IE and one can …

Member Avatar for j4jawaid
0
181
Member Avatar for Nile55

Can anyone please point me towards a good C# SQL tutorial. I've been looking for about 10 minutes, but I can't find a good one that actually works. I would apperciate anyone that helps me! Thanks! Nile

Member Avatar for mahmoud_wow
0
201
Member Avatar for don bunot

newbie here can anyone help me with C# dealing with RFID and file handling process?? if you have tried this kind of IDEA or codes or something..you can post it here thanks..

Member Avatar for don bunot
0
136
Member Avatar for hitro456

What is the best way to parse the string in C# In java u have a class like Scanner. Is there any equivalent class in c#.

Member Avatar for hitro456
0
506
Member Avatar for naren7

hi everybdy im using this code for updating this feilds how i store th date value in database using datetimepicker in c#. "update employemaster set sssnno='" +txtssnno.Text+"',sinno='"+txtsinno.Text+"',otherid='"+txtotherid.Text+"',smoker_id='"+cmbsmoke.Text+"',driverlicesencenumber='"+txtdvrnumber.Text+"',militaryservice='"+txtmservice.Text+"',nationality_id='"+cmnation.Text+"',dob='"+dtm.Value.Date.ToString()+"',martialstatus_id='"+cmMstatus.Text+"',gender='"+rdgender.Text+"',licenseExpireddate'"+cmbxldat.Value.Date+"',ethnicrace_id='"+cmbethnicrace.Text+"'",con); --------------------------------------------------------------------------------

0
46
Member Avatar for silayse

hi ! I am new in c# asp.net,I have 2 user type.When Standard users submit a request ,other user type like admin can see and accept or reject.I created a request and other user see this request but I can not implement accepting or rejecting part.I can not add checkbox …

0
63
Member Avatar for telmessos

Hi all, I would like to learn how I can read a MySQL table and move the records to an Excel file. While replying, please consider that I am at the very beginning of c# and write everything "Idiot proof" Thanks telmessos

Member Avatar for telmessos
0
125
Member Avatar for ejazmusavi

Hi I have project which involve a database and a folder in which i will store the images which paths are stored in database. When i make a setup copy of my project and run it gives the following error. COULD NOT FIND FILE 'C:\DOCUMENT AND SETTINGS\ADMINISTRATOR\ISO.mdb' while i have …

Member Avatar for sknake
0
344
Member Avatar for Camzie

Hi there Iam new to C# and I need help with creating a dynamic web form using C#. It should have labels, buttons, one combobox, picture boxes and textboxes. The user should be able to select a member from the combobox or the user can add a member to the …

Member Avatar for sknake
0
135
Member Avatar for zydaru

Hello, I have a tiny problem with my c# application, the short version : not all windows users can see it. Long version: 1. I created my c# application, and it works, no problem there. 2. I published my application and I obtained my setup files. 3. I started the …

Member Avatar for zydaru
0
128
Member Avatar for amlanjyoti.s

Hello, this is the first time I am posting in DaniWeb.com. I am a first semester student of B.Sc(IT). Me and some of my batch mates are looking forward to organize a sort of code war, to give ourselves a test of team based projects and a sense of friendly …

Member Avatar for sathya8819
0
134
Member Avatar for skyyforever

Hello everyone, I'm trying to implement windows form with data grid (or anything you say is better) which should represent a hierarchical data. This data are stored in a xml file which structure is as follows: [code] <elements> <element> <term>name of element</term> <subelements> <caption> <term>caption name</term> <subelements> <caption> <term>caption 2 …

Member Avatar for gusano79
0
180
Member Avatar for capiono

I want to assign a color to my excel column [CODE] currentRow.Interior.ColorIndex = 17; [/CODE] But I don't want to use one of the colors in the excel palette I do I add my own color. for instances: [CODE] currentRow.Interior.Color = Color.LightBlue; [/CODE] Thanks for the help

0
94
Member Avatar for dilake

I am trying to Bind a [B]public member variable[/B] of an object to a TextBox in the UI. But when I execute the application the TextBox does not display anything. But when I [B]make the member variable as private and provide get set accessors[/B] to access the member variable the …

Member Avatar for dilake
0
122
Member Avatar for JayOne

I have SQL Compact installed, and I'm using VS C# 2008 Express. I'm kinda confused though. I try to add: [CODE]using System.Data.SqlServerCe;[/CODE] And get an error. It don't even pop up in intellisense. I've tried adding reference paths to the DLL's (not sure if I'm doing it right) but still …

Member Avatar for sknake
0
108
Member Avatar for Katherine87

I have problem With My Calculator in ASP.NET C# in Microsoft Visual Web Developer 2008 Express Edition : web application not windows application the code: [CODE] protected void Button2_Click(object sender, EventArgs e) { //Double F1; //Double S1; // Double Re; // F1 = Convert.ToDouble(TextBox1.Text); // S1 = Convert.ToDouble(TextBox2.Text); // Re …

Member Avatar for Nick Evan
-1
121
Member Avatar for reyarita

hey guys! do you have idea how to print a * and in a square symbol like this ***** * * * * * * ***** i have my code in here but it didnt follow like that

Member Avatar for jonsca
0
150
Member Avatar for moroshko

Hello ! Could you please point me to a good C# tutorial for drawing 2d graphics like Ellipse and Rectangle (that inherit from Shape) on a Canvas using WPF ? I'm also interested later to click on shapes and identify which shape was clicked, and also to drag and drop …

Member Avatar for jamesonh20
-1
150
Member Avatar for jsnowden2008

Hi, Im having a problem with some socket programming and im hoping someone here can help me. basically im trying to bind a listener to a port. I have used some source code i obtained from the net, however the code was a few years old and contained the obsolete …

Member Avatar for jsnowden2008
0
183
Member Avatar for shreyas2785

I have a scenario where i have a DataSet bound to a combo box, and i would like to read a row from the DataSet based on the item selected in the Combo Box. For e.g. I have a dataset that has 1 table containing 2 fields say ID & …

Member Avatar for sknake
0
200
Member Avatar for lightforce

Good day, can any one please give me some explanation and an example of source codes regarding these following concepts ? I really need help, I'm so confused. 1. Access File Paths by Using the Path Class 2. Access Files by Using the File and FileInfo Classes 3. Access Directories …

Member Avatar for ddanbe
0
140

The End.