4,588 Topics
| |
hi all i am looking for free window controls like dev express ,infragistic whith which i can create rich looking application in C# Any body having knowlage please revert Thank you in advance | |
Hey Everyone, I'm doing a little test for a presentation I'm giving on Tuesday. I wanted to show the performance difference between VB2008, C# and C++. To do this, I have three programs. Each program performs the Fibonacci sequence X times, and can either do it iteratively or recursively. As … | |
Hey there, Over the past few weeks as an excerise I've been trying to create a C# image viewer. At the moment I have one window, with a list of images displayed in a ListBox. When I the F5 button, a second window pops up at fullscreen, and I want … | |
Hi all!! I want to play multiple audio file from a folder, but I only play the first file This is my code : List<string> wavlist = new List<string>(); wavlist.Add(Application.StartupPath + "\\mp3\\1.mp3"); wavlist.Add(Application.StartupPath + "\\mp3\\2.mp3"); wavlist.Add(Application.StartupPath + "\\mp3\\3.mp3"); wavlist.Add(Application.StartupPath + "\\mp3\\4.mp3"); foreach (string file in wavlist) { WMPLib.WindowsMediaPlayer wplayer = … | |
Hi there, I'm still fairly new to programming. Would someone be able to explain exactly how different windows should be used in MS Visual Studio? It seems that variable sharing between different windows is problematic. So does that mean that if you are trying to do multiple things on one … | |
Hello All, I really want to create a network sniffer. What kind of topics do I need to understand to create a simple one? Thanks | |
In real life, what is the difference between C# and Visual Basic?. I want to make an application to handle data from a database and I was told that C# is much better, I need advice. Thanks in advanced. Waldis Portes | |
I am currently developing a CMS for my firm using .NET Framework ,ASP.Net(C#) & SQL Server Express 2008 ADV. Whenever a user creates an Article i want to genrate a permalink for each article so that navigation is simple instead of using query strings and exposing article id to common … | |
Hello All, Recently, I have been thinking of creating a software that will detect network packets and then develop it as I go along. Can you help me point to the correct detection. As in, if there is any articles you can recommend which I can read? I would appreciate … | |
hi guys, how do i create a simple server that ships alongside my windows app during installation which will be used as local server to host web pages that ships along with the Windows app. | |
Hi there am new here, i code with c#, web with asp.net mvc, i will like to meet with codaz of like manner.. | |
if i want to read some integer what command i must use how to do i read and save value in multi dimensional array?? urgently needed:-| | |
One of the most, if not THE most, beautiful formulas in math, is from Euler: ![Euler_e_pi_i.png](/attachments/large/1/b32f45540a27b3efc328d14c60ee286c.png "align-center") It combines in it a relation between the number **e**, the number **Pi** and the complex number **i**, plus the basic math symbols 1, +, = and zero. Is that not amazing? More … | |
Hi all, i need help to build up a cellular automata program. So, there is 4 state of cells, 0 = space, 1 = ".", 2 = "+", 3 = "#" This state is continuous from 0 - 3, after 3, it will be back to 0. For example, an … | |
Hi all. I have a need to use native/C++ code in C# application. I basically want the lower level functionality of C++ with a good looking C# GUI. Calling native functions from C# via Dllimport is not what I want to do. The native code will need to be running … | |
can u plz tel me how to retrive only date from DateTime in C#. ex: 06/03/2008 12:00:00 i need only date 06/03/2008 in my application. | |
| So I currently have a bot in mIRC, but I want to develop a bot in C#. I am trying to figure out how to parse JSON in C#. My goal is to get recent followers and check for followers(this is where json comes in) and add a points system. … |
Hello my friends, I'm re-thinking my project and I'd like some opnions... Goal: An WebServer/Stream Server easially deployed in any Windows or Linux(Using Mono), with no dependecy on previous installed software(except for Mono). The basic app usage: The user will be able to select multiple folders(with music, videos and photos) … | |
Having trouble. Don't really know where to start. I need to use a helper class to populate a stack in C#. The helper class needs to have a few dozen items used to populate the stack. Then, I need to use a timer to kick off a second process that … | |
I dont know how to connect C# to MySQL can someone help me? | |
Hey im pretty new to C# and im just learning it and i want to make a game, more of a test but i dont know how i would make it. so there is going to be yes or no question and multiple answers and i wouldent know were to … | |
| For my angular controller I have: app.controller('AdminCtrl', function ($scope, $http) { $scope.data = { Name: '', Password: '' }, $scope.login = function (data) { $http({ method: 'POST', url: '/login/postlogin', data: JSON.stringify({ data: $scope.data }), contentType: "application/json", dataType: "json" }).success(function (data) { alert('success!'); }).error(function (error) { alert(error.message); }) } }); For … |
Hi All, When i excute this code at return people i get PeopleViewer.Person instead of there names.Can anyone tell me what i am doing wrong. Thanks for the help. namespace PeopleViewer { class PeopleRepository { public Person[] GetPeople() { var people = new Person[] { new Person() {FirstName="JOhn",LastName="Sheridan",StartDate = DateTime.Parse("2/7/12"),Rating=2}, … | |
just a question what are the advantages that C# as a general purpose programing language has over other web development programming languages such as HTML 5 CSS and so on | |
I have simple query. Suppose if I am working on a project which contains one form (frmStudent) which is linked to table tblStudent. Suppose if I release this this application. And after some time I created a new form in my project (frmTeacher) And again for this form I have … | |
I have a real time signal (which the result of a function of mine over time). I want to calculate when the signal overcome a threshold when in ascending order and when it goes down the threshold in descending order. My matlab function to do so is the following: X … | |
hi i'm trying to build an app that allow to login to instagram using c# when i run my application and logged in , i need to be redirected to fixed page without any reaction from me here's my code : private void button1_Click(object sender, EventArgs e) { HtmlDocument doc … | |
Hi is possible to cast List of objects to List of string array? | |
assume latgeInt=2147483647 Debug.Log(largeInt); //2147483647 float largeFloat = largeInt; Debug.Log(largeFloat); ///2.147484E+09 int backAgain = (int)largeFloat; Debug.Log(backAgain); //-2147483648 *This part i did not get. I assume there was some data loss when float was explicitly casted into int . But the loss should be in right most digits. How come sign got … |
The End.