Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #3K
~11.0K People Reached
Favorite Forums
Favorite Tags

19 Posted Topics

Member Avatar for gracea

if u use a loop definitely u'll get only the last value...but u can write the code in a timer event

Member Avatar for mnmw
0
303
Member Avatar for beuls

Hi everyone, Is there any function in C# to find the CPU utilization of a process? Any help is greatly appreciated.... Thanks n advance Beulah

Member Avatar for beuls
0
115
Member Avatar for Vrb

You can follow the book "C# and .Net Platform" by Andrew Troelson. The book is good for learning concepts. But examples are not so good. Beuls

Member Avatar for pygmalion
0
342
Member Avatar for beuls

Hi everyone, I was trying to load an assembly during runtime from a remote application server using the web configuration file in C#. I created a dll eg. RemoteLib.dll. Then i developed a windows application that uses this dll. eg. testApp. I added a config file "testapp.exe.config" that contained the …

Member Avatar for beuls
0
215
Member Avatar for beuls

I have written a program in c# for quick sort using multithreading. but the code has a problem. the array is not sorted properly. i think it is because the parent thread terminates soon before the child threads sort the array. i am attaching the code herewith. kindly help me.any …

Member Avatar for _r0ckbaer
1
272
Member Avatar for beuls

hi, how can you read a hexadecimal number in c++? is there any option with cin/ your help is greatly appreciated. Beulah

Member Avatar for beuls
0
5K
Member Avatar for SiliconSpec

Pls try this code [code] #include <iostream.h> #include <string.h> void main() { char s[100]; int j,ns=0,i; cout<<"Enter a string :"; cin.getline(s,100); for (i=0;s[i]!='\0';i++) { if (s[i]==' ') ns++; if(s[i]>=97 && s[i]<=123) { s[i]=s[i]-32; break; } } cout<<ns<<endl; for (j=i;s[j]!='\0';j++) { if (s[j]==' ' && s[j+1] != ' ') { if …

Member Avatar for iamthwee
0
1K
Member Avatar for Tiffiney_v24

try the following code: [code] #include <iostream.h> #include <conio.h> class real { double n[10],s; int i; double avg; public: real() { s=0; } void read() { for (i=0;i<10;i++) { cout<<"Enter a number :"; cin>>n[i]; } } void print() { cout<<"The numbers entered are :"<<endl; for (i=0;i<10;i++) { cout<<n[i]<<endl; } } …

Member Avatar for iamthwee
0
160
Member Avatar for muthuivs
Member Avatar for YoTaMiX

pls try this code. [code] #include <iostream.h> #include <conio.h> int ext(int[],int,int); void main() { int k,a[10],i,n,p=0; clrscr(); cout<<"Enter size of array :"; cin>>n; cout<<"Enter the elements :"; for (i=0;i<n;i++) cin>>a[i]; k=ext(a,n,p); cout<<"The extreme element is :"<<k; getch(); } int ext(int a[10],int n,int pos) { if (pos<=n) { --n; ++pos; ext(a,n,pos); …

Member Avatar for beuls
0
142
Member Avatar for psychedelic
Member Avatar for Druark

can u pls explain me the logic for converting from rgb to hex? ie tell me what will be the equivalent of 80% red 40% green and 20% blue and how to get it exactly(the logic or formulat i suppose) then i may be able to help...and what r those …

Member Avatar for beuls
0
143
Member Avatar for l-o-s-t

I think this will work fine. typedef struct node { int key; struct node *leftp; struct node *rightp; } *Treep; void blah(node *tree) { }

Member Avatar for l-o-s-t
0
259
Member Avatar for hongfan

[QUOTE=hongfan]Hello! I'm just starting to learn C++ for school, and our first assignment is creating a series of numbers according to the following rule: [code]current value next value 1 none - the sequence terminates even current / 2 odd 3*current + 1[/code] I have to compute for the initial values …

Member Avatar for beuls
0
219
Member Avatar for Hawkeye249
Member Avatar for EricDV
0
230
Member Avatar for beuls

Dear programmers, I have developed a graphics program in C++ to draw various shapes using virtual functions. While using the Turbo C compiler the graphics.h file is included to use the graphics functions. But now i am using the Visual C++ (MS Visual Studio 6.0) compiler. so what modifications shd …

Member Avatar for beuls
0
224
Member Avatar for beuls

Dear all, I have written a program in c++ to pass arrays of objects(belonging to the same class) to a member function. It works fine in VC++ but gives an error as "Undefined structure class name". My program is a larger one. So i am giving a similar code below. …

Member Avatar for SpS
0
1K
Member Avatar for plus

I can't get you. Can you explain your question? In what language you want to store? Is it storing an integer like 12 as "12" Beuls

Member Avatar for winbatch
0
56
Member Avatar for Pscsc

Delegates are nothing but function pointers. You can read the book C# and .Net Platform by Andrew Troelson. I am giving an example here with necessary comments. It converts a number from decimal to binary and vice versa. using System; namespace Conversion { public class Conversion { /// <summary> /// …

Member Avatar for beuls
0
190

The End.