4,588 Topics

Member Avatar for
Member Avatar for farooqsam
Member Avatar for Jx_Man
0
48
Member Avatar for VernonDozier

I'm pretty new to Visual C#. I have a class called Node and a [ICODE]List[/ICODE] of Nodes called children. The goal is to make a Node tree. Each Node except the root Node has exactly one parent. Each Node has 0 or more children. To that effect, as part of …

Member Avatar for VernonDozier
0
155
Member Avatar for gsuhit

I have a report with a simple parameter (string parameter) and I'm setting it with this code: ParameterFieldDefinition parameter = _reportDocument.DataDefinition.ParameterFields["Filtro"]; CrystalDecisions.Shared.ParameterValues currentValues = parameter.CurrentValues; currentValues.Clear(); CrystalDecisions.Shared.ParameterDiscreteValue newValue = new CrystalDecisions.Shared.ParameterDiscreteValue(); newValue.Value = "Value to Set"; currentValues.Add(newValue); parameter.ApplyCurrentValues(currentValues); But when I run the report, the program show an automatic window …

Member Avatar for gsuhit
0
110
Member Avatar for msspitul

msspitul Member since: 5/21/2008 From: Northborough, MA, United States Posted - 5/21/2008 12:43:01 PM Hi, I have a program that was originally in VB that I am trying to convert to C#. I have converted all of it succesfully accept for a part that uses the "like" statement. The program …

Member Avatar for blovi32
0
442
Member Avatar for johnroach1985

Hi ! I am working on this project; the thing is that I want my program to create it's own environment variable path so it can be called from and used in CMD too. How can I do this... Googling hasn't been any help yet. Thanks in advance!

Member Avatar for johnroach1985
0
127
Member Avatar for cse.vidhya

hi, i am new to this line... i want to create a registration form in that i have 6 textbox and 6 label box tell me how to insert these values into database and ei have to edit and update the values from the database....... can any one give me …

0
45
Member Avatar for knowledgelover

hi there I was wonder how can I , after adding files to my setup project(for C# application) to tell the setup that this file must be installed in a specific folder ini the target machine ? i.e : file to be put in a folder in the machine that …

Member Avatar for Jx_Man
0
76
Member Avatar for tejalrupera

Hi I am developing a window based application in C#.net. In this app i have to sync between flash and c#. For this i have added Shockwaveflashobjects.dll from com component. I got idea of this via this topic [URL="http://www.codeproject.com/KB/audio-video/flashexternalapi.aspx"]http://www.codeproject.com/KB/audio-video/flashexternalapi.aspx[/URL] Now when i am make a call from c# to flash …

Member Avatar for Jx_Man
0
155
Member Avatar for toro4423
Member Avatar for selvaganapathy
0
60
Member Avatar for virgilio

Hi I'm now into data structures: this is the problem: string s = "abcdef" char[] mychar = string.TocharArray(); int Length = s.length; StringBuilder sb = new StringBuilder(Length); -------Basically I need to construt a new string with the last two character iterated twice if the string = the same string. does …

Member Avatar for chsarp_vijay
0
87
Member Avatar for decobatko
Member Avatar for Ramy Mahrous
0
42
Member Avatar for szmitek

I have problem with LINQ. I have created SQL Server 2005 database Database.mdf in App_Data folder with two tables - Pages and PagesGroups. Table Pages consist of fields PageID, AspxForm, DescriptionEN, DescriptionPL, PagesGroupID, NavNameEN, NavNamePL, PageActive, NavToolTipEN, NavToolTipPL and table PagesGroups consist of PagesGroupID, NavGroupNameEN, NavGroupNamePL, NavGroupToolTipEN, NavGroupToolTipPL, GroupDescriptionPL, GroupDescriptionEN, …

0
73
Member Avatar for decobatko
Member Avatar for IT_Techno

Hi All, I am looking for source code to create a slide menu just like shown in the example [url]http://www.obout.com/sm3/pro_5.aspx[/url]. but i need it for C# windows form application not for web application I need the source code, Please help me out guys if you have anythign similar. Thanks IT_Techno

0
148
Member Avatar for priyamsc

hi, I have used asp.net2005 with c#. In that i need to show pop up menu for particular IP address when ever some new entry added to database. as we have in yahoomail. for example when we use yahoomessenger and if u have new mail it shows tat you have …

0
62
Member Avatar for anoop_love007
Member Avatar for sebastian3
0
34
Member Avatar for edek

Hi, I need to create list of links, like: Link1 Link2 Link3 ... which could be dynamically created during runtime. Is there any standard .Net control that can contain LinkLabel objects so that I can easily add them and remove?

Member Avatar for Ramy Mahrous
0
94
Member Avatar for sireesha.c

I have an datagridview control in c# and i want to update the values in datagridview and need to update in sqlserver automatically.

0
72
Member Avatar for knowledgelover

Hi there, I need to copy image packaged with setup file project for a C# application to the hard disk of the end user ( how is installing ), I am using installer class, but the problem is I do not find the path of the image which is supposed …

Member Avatar for Ramy Mahrous
0
200
Member Avatar for ali_ggl

Hi i have a datagrid i want to populate its cells color on some if else statements bases then how to do this. second i want to edit some cells value then how to edit grid row cell value and last is it possible to assign color for each row …

Member Avatar for Jx_Man
0
53
Member Avatar for knowledgelover

Hi there, how can I add number of radio buttons from C# code , in other words number of radio buttons is determined just in the run , so I need to create the same number of radio buttons an dthen add them to a panel, that the number of …

Member Avatar for Jx_Man
1
87
Member Avatar for sowmyask

I have a c# file from which the data/ value is passed to the xml file . then the xml file is again called along with the updated data. How do I do this?

Member Avatar for ruinedpheonix
0
91
Member Avatar for u4umang2001

string abc="40+40*4.2%+120"; how can i get the result??? means it should be computed as::: double xyz=40+40*4.2%+120; how this is possible????

Member Avatar for sebastian3
0
72
Member Avatar for u4umang2001

IN C#::: i have a string string abc="40+40*4.2%+100" now how can i get the result????

Member Avatar for corwing
0
145
Member Avatar for pash11

hi friends.. I am pretty new to c#.net web development. I have develope one simlple address application to user store contact details in database. But I gotta Problem retrieving data from database.. My MSAccess for contact_info table shown below.. username name phoneno emailid prashant shri 8379 [email]shri@gmail.com[/email] prashant ravi 277287 …

Member Avatar for Ramy Mahrous
0
91
Member Avatar for Altarium

I've got a small bit of code I need to convert to C#. However my experience with C# is very very limited and a simple python program like the one I'm trying to convert is beyond my experience in C#. If anyone knows of any converters or is willing to …

Member Avatar for Typhon
0
543
Member Avatar for knowledgelover

Hi C++ experts , actually my knowledge is not very good I can call my self degree 2 beginner , But I know how to do things in C#, and write now I need to execute what I have already done in C#, in a c++ code. MORE EXPLANATION : …

Member Avatar for mitrmkar
0
391
Member Avatar for priyamsc

hi, I am working in Asp.net 2005 with c#. In that new datas will be entered in a web form. then tat datas will be shown in administrator form. so when ever the new entry(data from database) is coming in admin form that time beep sound or alarm should come …

0
67
Member Avatar for jitupatil_2007

Hi friends can any body tell me how can i move a whole statement matching with the search string to a new file in C# any help is appreciated please...

Member Avatar for jitupatil_2007
0
81
Member Avatar for coppersony

Hi World! I'd like to get out some data (voice) from WAV files in C#. I have to use the data as a double. I searched for the solution for hours, but I haven't found any useful stuff. :( Could anyone give me any idea how to do that? Is …

Member Avatar for coppersony
0
124

The End.