Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
54% Quality Score
Upvotes Received
19
Posts with Upvotes
12
Upvoting Members
4
Downvotes Received
9
Posts with Downvotes
6
Downvoting Members
8
4 Commented Posts
~15.0K People Reached
Interests
.NET C#, GAME - TWISTED METAL, COUNTER STRIKE
PC Specs
C# , .NET, MS SQL, ASP.NET. WINDOW XP,VISTA, WINDOW 7
Favorite Tags
Member Avatar for ashishkumar008

[B]1.[/B] Right click on your project name in solution explorer. [B]2.[/B] Point the cursor on [COLOR="Green"]Add[/COLOR] then choose [COLOR="Green"]Existing Item...[/COLOR] [B]3.[/B] Now go to the Location of your sound file and select that sound file. [B]4.[/B] Now select your sound file in solution explorer then Right click on it choose …

Member Avatar for JOSheaIV
3
4K
Member Avatar for JayWeb

Hi, I have a small issue, wondering if anyone could help. I have a form, FormBorderStyle is set to None. I have a groupBox on the form called gbLogin. I want to be able to move the form via anywhere on the groupBox. I have searched the net and have …

Member Avatar for kvprajapati
0
164
Member Avatar for AngelicOne

I've found some tutorials but they all need to browse the file first. I need to play the file automatically without the need of finding it by a browse button.

Member Avatar for ashishkumar008
0
149
Member Avatar for ashishkumar008

hello, Actually, i want to play sound file from [COLOR="green"]resource[/COLOR]. I am using [COLOR="green"]WindowMediaPlayer[/COLOR] Control for window application. But there is only option is "[COLOR="Red"]URL[/COLOR]" (Property of control) to play sound file. I don't want to use [COLOR="Red"]URL[/COLOR] property. Because my sound file is present in the [COLOR="Green"]Resource[/COLOR]. Any body …

Member Avatar for zinnqu
0
1K
Member Avatar for Nemo_NIIT

Hi I want to generate sequence number in C# window application I have got one link on Google, but I it is not helpful. I want that on click to add button an order sequence number should generate and stored in SQL Database i have written this code but it …

Member Avatar for ashishkumar008
0
1K
Member Avatar for prayag.419

hi friends, i want to make software in C#.net (new user of C#.net), on "Clothes shop for men". Can anyone suggest some help.

Member Avatar for prayag.419
0
166
Member Avatar for ashishkumar008

Hello, i want to know how to convert digit or currency in words. like- when i enter in textbox [COLOR="green"]15000025.65[/COLOR] then in other textbox it should be converted in text format like - [COLOR="Green"]fifteen crores twenty five rupees and sixty five paise[/COLOR]. Any one can help me.......... plzzzzzzzzzzz please tell …

Member Avatar for kvprajapati
-2
83
Member Avatar for ashishkumar008

hello, any one can tell me how to embed assembly file [COLOR="green"](windows control library)[/COLOR] into resource in window apllication using .net c#. pleaseeeeeeeeeeeeeeeeeeee

Member Avatar for kvprajapati
-1
158
Member Avatar for darkagn

Hi all, Well this is my 1000th post here at DaniWeb and I thought "What better way to celebrate than by posting my first ever code snippet?" This problem occurred in an application that I am working on. I have a password field in my form that was specified as …

Member Avatar for darkagn
2
360
Member Avatar for ashishkumar008

helloooo Actually, i have one question. my teacher asked to me - why we take Int16,Int32,Int64 why not Int20,Int36,Int68. Please tell me the answer. Pleaseeeeeeeeeee.... is the factor operating system like 32-bit,64-bit,16-bit? please give anyone exact answer.

Member Avatar for kvprajapati
0
158
Member Avatar for Shlesh
Member Avatar for Purushottamkr

Write a program to sort 20 decimal numbers in decreasing order and print the result. i have solution but lengthy. [CODE]decimal[] arr = { 12.3m, 45.2m, 5.4m, 23.44m, 43.21m, 31.34m, 4.3m, 21.3m, 34.2m, 32.1m, 44.2m, 6.4m, 64.3m, 3.4m, 5.32m, 32.345m, 4.34m, 23.4m, 45.234m, 5.31m }; for (int i = 0; …

Member Avatar for Diamonddrake
0
1K
Member Avatar for Nemo_NIIT

Hi, i am using c# window application I have create one Login Form. I want that when user put its username and password first it should check in the database and then it should give the out put. i have even create on signup form first it should be register …

Member Avatar for ashishkumar008
0
106
Member Avatar for Shlesh

hi! any body tell me any easy matrix program which is correctly working. please..... i am new in c#.

Member Avatar for ashishkumar008
0
138
Member Avatar for ashishkumar008

helloooo, Actually, i want to know something. please read this code... [CODE]using System; using System.Collections.Generic; using System.Text; namespace temp { class Program { static void Main(string[] args) { Int16 i = Int16.MaxValue; Console.WriteLine("Simple: " + (i )); unchecked { Console.WriteLine("Unchecked: " + (i + 1)); } checked { try { …

Member Avatar for nick.crane
3
125
Member Avatar for Shlesh

hi!!!!! any body tell me what is command line argument with example. Thank's in advance.

Member Avatar for ashishkumar008
0
201
Member Avatar for ashishkumar008

A jagged array is an array whose elements are arrays. The elements of a jagged array can be of different dimensions and sizes. A jagged array is sometimes called an "array of arrays". [COLOR="Red"]NOTE:-[/COLOR] I'm using Single dimensional jagged array. Actually I am using single and multi dimensional arrays as …

Member Avatar for Shlesh
1
132
Member Avatar for rodkay

Hi all, Quite a basic question for most of you; I am trying to obtain length of a string < char [b]name[MAX_ENTRIES][MAX_NAME_SIZE][/b] > for use in a for loop that will perform isalpha. [size=3][color=blue]for (int j=0; j < &name[i].length(); j++)[/color][/size] [color=black]I am getting [/color][color=red]error 2228: left of '.length' must have …

Member Avatar for ashishkumar008
1
171
Member Avatar for Geekitygeek

This seems to be coming up in a LOT of posts at the moment so i figured i would put it into a handy code snippet to save us keep typing it. To access controls on a form you need to have a reference to the current instance of that …

Member Avatar for beetscodes
3
1K
Member Avatar for reemhatim

how could I start my way in programming ?I have taken structured programming in c++ in university and I took a course about object oriented programming in c# but I still feel I'm not on right track .please give me an advice that could help me. thanks :) :)

Member Avatar for ashishkumar008
0
85
Member Avatar for ashishkumar008

Hi....... This code is useful to check given string is palindrome or not. Actually, there are some other way also to check palindrome. So, be careful which code gives better efficiency. You can [COLOR="Red"]comment the line[/COLOR][COLOR="Green"]-bool caseignore= str.Equals(revstr, StringComparison.OrdinalIgnoreCase);[/COLOR] and in [B][COLOR="Red"]if[/COLOR][/B] condition you can use- if(string.Compare(str,revstr,true)==0)

Member Avatar for vijaykrishnabor
0
303
Member Avatar for sakurayana

i want your help....please help me through this......i dont knw what to do.... i've 1 table contains 1 row and 3 colums..and i've 1 action button to insert a new data....what can i do,so when we click the insert button,a new blank row will appear then we can insert a …

Member Avatar for ashishkumar008
0
92
Member Avatar for ja0

I want to pass some variables from the child form to the parent form. So at the Main form or Parent form I added the variables as a constructor: [CODE] private SampleFunction() { int a, b; //Here is where I want to use the x,y and z from the Second …

Member Avatar for ashishkumar008
0
188
Member Avatar for chathuD

Hi i have a small calculator app .that add 2 values from the user input.(a windows application on C#). And now what i want is to access that calculate method on a web site,witch is run on my local host. so plz.....somebody can help me........

Member Avatar for ashishkumar008
0
50
Member Avatar for chathuD

Hi i have a small calculator app .that add 2 values from the user input.(a windows application on C#). And now what i want is to access that calculate method on a web site,witch is run on my local host. so plz.....somebody can help me........

Member Avatar for ashishkumar008
0
113
Member Avatar for AngelicOne

Is this possible or are there any ways for this? I need to insert records in two tables using SQL. I believe that having two sqlcommands must have different name so if there would be two of it, how could I execute both.

Member Avatar for ashishkumar008
0
93
Member Avatar for atienanurin

hello...i`m a new beginner in c#, is anybody know how to...... i`m trying to create a table. the table have one INSERT button. when i click the INSERT button, an empty row will appear below the previous row, which i have to insert a new data. so now what i …

Member Avatar for ashishkumar008
0
86
Member Avatar for Nemo_NIIT

[B][COLOR="Green"]Unable to copy file "obj\Debug\.exe" to "bin\Debug\.exe". The process cannot access the file 'bin\Debug\.exe' because it is being used by another process.[/COLOR][/B] please help i have open the task manager i have end the process but then also same error please help me I am using window application

Member Avatar for ashishkumar008
-1
306
Member Avatar for destruct0

Hi !!! I have two Windows Forms. In First Windows Form i have one Text Box and one Button. In the Second Windows Form i wish to call First Windows Form and get the value of Text Box. Is this is possible? When i create a object of the First …

Member Avatar for ashishkumar008
0
414
Member Avatar for Poposhka

Can a String object behave like other reference objects such as in the case below? [code] class MyClass { public String Text = ""; } MyClass a = new MyClass(); a.Text = "Text in a.Text"; MyClass b = a; b.Text = "Text in b.Text"; Debug.WriteLine(a.Text); // Prints 'Text in b.Text" …

Member Avatar for ashishkumar008
0
113