4,588 Topics

Member Avatar for
Member Avatar for d3hartm1

Hello, I am looking for some code that would help me understand how to use SPSS in C#. Basically, what I need to do is open an SPSS file and save it in another format. If anyone could help me out with this, I'd greatly appreciate it. Thanks,

Member Avatar for ddanbe
0
116
Member Avatar for galaris

Hello everybody! I have a game server (WoW). I want my players to download my custom patches to the game. I've done a program that checks for update/downloading things. I want my program to send a packet to my game server if player have all my patches. I dont need …

Member Avatar for mcriscolo
0
210
Member Avatar for hkBattousai

This sample code is from [URL="http://msdn.microsoft.com/en-us/library/aa287786%28VS.71%29.aspx"]MSDN[/URL]. [CODE]private string name; public string Name { get { return name; } set { name = value; } }[/CODE] I looked several examples, and they are the same. Why do we keep two different properties to store the name, namely "name" and "Name". I …

Member Avatar for hkBattousai
0
424
Member Avatar for lewashby

I'M reading the book "Beginning C# Game Programming by Ron Penton". The book is instucting me to create a small framework for a game, the problem is, the book was written for VS 2002 and I'M using VCs 2008 express. I'M instructed to add references to the project, two of …

Member Avatar for Gospp
0
312
Member Avatar for firesock

HI guys, I'm having a rough time trying to solve a problem left by my old colleague, he developed a dll that removes all the controls like combo's, dropdown, hyperlink's and buttons from a page before print or export to excel, but every time i have combo's or checkboxes it …

0
64
Member Avatar for nirveshverma

hi to all i have a lot of interest in c# but i don't how to and where to start since my mathematical portion is very weak but i want to overcome this and i want to learn c# perfectly please tell me best resource please don't mention about MSDN …

Member Avatar for apegram
1
131
Member Avatar for aldm

Hi to all, I'm solving some numerical analiyse problems in C#. Is there any C# implemented function similar to eval() in Matlab? So, user type the function that he wants to evaluate in text box, and eval(String s, double x) evaluate value of that function with argument x. For example, …

Member Avatar for aldm
0
620
Member Avatar for ansar_el_sonna

Dears I need your advice to make a c# application which execute UNIX commands The application procedure - connect to UNIX box - execute a UNIX script (such as <touch file_name>) from a C# GUI Any suggestions?

Member Avatar for ansar_el_sonna
0
44
Member Avatar for Geodude0487

Hi I'm not sure if the answer is anywhere else in the forums but I have yet to find it. I'm working on a school project where we basically have to write a TicketMaster esque program. We have a main form, with a log-in form, and a register form. We …

Member Avatar for Geodude0487
0
178
Member Avatar for johnroach1985

Hi there. In a day I have to connect to a lot of networks and each network has its own setting. Each time I have to re-configure my Windows Vista Home Edition IP confiugrations which is both slow and quite annoying. Thus I decided to write a program in C# …

Member Avatar for johnroach1985
-1
284
Member Avatar for RobertQQ

Hi all!! I am new to c# and am looking for a site I can go to that has problems for beginners in c#. I tried googling it but was unable to find anything. Does any one know of a site like this? Thanks for the help!!

Member Avatar for kvprajapati
0
253
Member Avatar for hariharang
Member Avatar for KozZZak

Hello, I have a problem, I needed a change from C++ to C#. help anyone? I made it from this: ( This is script in C++ [CODE]using namespace System; using namespace System::Text; using namespace System::Net; using namespace System::Net::Sockets; String^ chr(String^ str) { Char^ c = Convert::ToChar(Convert::ToInt32(str)); return Convert::ToString(c); } Int64^ …

Member Avatar for KozZZak
0
272
Member Avatar for aarushik

hii frndz i m making a project on hospital management in c# with the help of ado.net in that i have made form of 'daily patient record' in which i take values room charges,test charges,dr. visit charges now i want when i insert value in roomcharges of a patient it …

Member Avatar for kvprajapati
0
97
Member Avatar for c#n00b

Hey, I'm in the process of writing an email header analyzer in C# and i'm stuck on something. Before i go into the problem i think i should write an intro on what i'm looking to achieve. I basically want a program that can read through headers and copy some …

Member Avatar for kvprajapati
0
231
Member Avatar for rohitmanhas_12

Need to delete the selected item from the dropdown from the database with the button click.Also when user clicks the delete button i need to show the alert or confirm dialog box for confirmatiuon that user realy want to delete that item....plz help me ...

Member Avatar for Freon22
0
1K
Member Avatar for arunkumars

Hi all, Want ur help to kick start one of my projects, where in I have to read and write data from USB port. If some1 here could help me out about how can i start and go about it would be a good favor, Also some links which contains …

Member Avatar for Marc Reed
0
166
Member Avatar for codingman

Hi, I need to code for "Quick reply text box" and also its functionality written in C# lang. Thanks

Member Avatar for codingman
-2
116
Member Avatar for srikanth754

I have an object like this. List<TSQLBeginTransactionBlock_Ext> beginTranList =new List<TSQLBeginTransactionBlock_Ext>(); Now i want to make some changes to this object but i want the original object as well. I tried created a temporary object like this List<TSQLBeginTransactionBlock_Ext> tempBeginTranList =new List<TSQLBeginTransactionBlock_Ext>(); tempBeginTranList = beginTranList; then I've made changes to this temp …

Member Avatar for Diamonddrake
0
773
Member Avatar for Buddhika75

I want to raise an event in C# when any one user make an insert or an update to a certain table in SQL server via my C# program. As there are multiple users using the execution file in various locations, I can not do it using the C# cord …

Member Avatar for kvprajapati
0
168
Member Avatar for stryker4526

Alright I'm having a heck of a time figuring out what's wrong with this code. It throws an error of [quote]Error 1 'System.Collections.Generic.Dictionary<Assignment7.Station,int>' does not contain a definition for 'ElementAt' and the best extension method overload 'System.Linq.Enumerable.ElementAt<TSource>(System.Collections.Generic.IEnumerable<TSource>, int)' has some invalid arguments7[/quote] However, when I was writing the code I …

Member Avatar for stryker4526
0
674
Member Avatar for calina.stoica

I have to use speech.synthesis in order to convert a text message to voice , and then to inject this voice message in the call when it is answered. Can somebody help me with this? I have already converterd text to voice and now I don't know how to inject …

0
21
Member Avatar for techstu

[QUOTE]hi...I had to read a xml file in c#...i Had written the following code but the desired output is not coming..[/QUOTE] [CODE]using System; using System.Xml; namespace ReadXMLfromFile { class Class1 { static void Main(string[] args) { XmlTextReader reader = new XmlTextReader("my.xml"); while (reader.Read()) { switch (reader.NodeType) { case XmlNodeType.Element: // …

Member Avatar for techstu
0
180
Member Avatar for Bugz

I'm a long time C programmer, but I'm only starting to learn C#, so forgive me if this is question that should be intuitively obvious. In C, I dislike 'magic numbers' in code, such as this: [CODE] var_name = 1234; /* what is the significance of this value??? */ [/CODE] …

Member Avatar for Bugz
0
213
Member Avatar for adam2009

Hi, I have got some questions. I hope someone could help me out. 1. I have wrote two methods in c# that manages local users in WinServer2008: adding local user and removing local user. Adding a local user work just fine. I have encountered some problems removing that user afterwards. …

0
84
Member Avatar for makdu

Hi, i have created a batch file for uninstall a c# application. [code] @echo off @msiexec /qr /x {********}[/code]But when the user click the uninstall option, a command window is poping up. I searched in net for a solution, but didnt get any solution. Please help

Member Avatar for kvprajapati
0
77
Member Avatar for simbomatic

Hello, I'm curious to know whether it is possible to expose the functions of a C# application so that they could be used by another C# application in runtime. The thing I am referring too is quite similiar([I]might even be the same[/I]) as using an API. I have searched on …

Member Avatar for simbomatic
0
967
Member Avatar for Dhammakirty

i have to create a windows application that split up into BO & UI 1. dll 2.class containing all properties (eg.employee id,name(table-employee)) 3.strongly typed data table to hold employee skill(table -employeeskill id,language,skill) 4.fetch & save code to BO 5.integrate BO & UI

0
64
Member Avatar for Dhammakirty

how can we acces properties (eg.employee id,name)defined within a dll to a windows form. someone can help me.......

Member Avatar for Sals
1
139
Member Avatar for GAME

I have just translated my delphi project to C#. I need a little help fixing some of the code I couldn't fix. One code I couldn't fix was xplode. Here is my source: [code]using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Threading; using System.IO; using System.Text; using …

0
65

The End.