Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #2K
~10K People Reached
Favorite Tags

28 Posted Topics

Member Avatar for rowly

Hi, I am having a problem with multiple series chart where the 0 value will be displayed on the graph as a straight line. i want display only data that doesn't have a 0 value. i have also check those two links wher they said this is a bug in …

Member Avatar for hellooo12
0
797
Member Avatar for rowly

Hello, I am trying to use sso login on my website where my clients can login to a certain company X without signing in again. I spoke to the developers at the company X. they told me that they are using SAML 2.0 for exchanging authentication and authorization. I was …

Member Avatar for rowly
0
2K
Member Avatar for linux
Member Avatar for rowly

Hi Guys, i was trying to create vsftpd server with virtual users to be specific. reference : [url]http://www.mmncs.com/2011/07/how-to-setup-an-ftp-server-with-virtual-usersno-accounts-using-vsftpd-on-ubuntu/2/[/url] i got to a point where am having a problem with the PAM configuration cp /etc/pam.d/vsftpd /etc/pam.d/vsftpd_orig ------passed cat /dev/null > /etc/pam.d/vsftpd ------failed thats the error am getting: tom@tom:~$ cat /dev/null > …

0
135
Member Avatar for rowly

Hello Guys, we just created a website using sharepoint 2010 and we implemented a booking system inside this website. we used a bamboo calender plus webpart as a booking system. now getting to the problem. there is a link inside this webpart where we click to enter new item(equipment booking). …

Member Avatar for Airshow
0
219
Member Avatar for Tauren
Member Avatar for rowly

hello guyz iv got problem with [COLOR=#0000ff]void[/COLOR] pointers i cant work [COLOR=#0000ff]this[/COLOR] out ! i[COLOR=#800000]'m trying to read from a binary file using a struct and pass this struct arrays to class object and push them to stack and display them on screen while poping them out ! [/COLOR]but the …

Member Avatar for summu
0
158
Member Avatar for rowly

can anyone help me with this code i just cant understand ! its about filling a deck of cards thx [code] for (i = 0; i < 52; i++) { deck[i] = (i % 13)<<2; deck[i] += i / 13; if(i/13 < 2) deck[i] += 64; [/code]

Member Avatar for WaltP
0
124
Member Avatar for ck1212

aha but is this the right logic Ancient Dragon ?! coz looking at his code he seems that he used a totally different logic ! is this the right test for the program ?! c.exe abc def file.txt argv[1]=abc argv[2]=def argv[3]=file.txt input: abc buffer = def input :cajef buffer= fdjef?! …

Member Avatar for rowly
0
160
Member Avatar for rowly

hey guyz, i'm trying to search each ar for matching characters in the buff, but I seem to be getting a buffer overflow. Can anyone give me any pointers, any help would be appreciated, this is my code: [code] #include <stdio.h> #include<stdlib.h> #include <unistd.h> #include <fcntl.h> #include <string.h> main(int ab, …

Member Avatar for Ancient Dragon
0
166
Member Avatar for rowly

[COLOR=#000000]Hey guyz, I'm stuck with this given, its bit hard I cant understand it just wonna know the logic ( no codes).[/COLOR] [COLOR=#000000] [/COLOR] [COLOR=#000000]Its saying write a C program which read from standard input, replaces all the occurrences of the characters by the first command line argument, with the …

Member Avatar for rowly
0
148
Member Avatar for rowly

Hello guyz i'm trying to write a stack program in C... Push one character onto the stack. Your function should have the prototype: void push(POINTER *Top,stackitem a); 2. Push a string of characters into a stack. Your function should have the prototype: void push_string(POINTER *Top,char *string); Your implementation should make …

Member Avatar for rowly
0
1K
Member Avatar for jimbobint

try this [URL="http://www.cplusplus.com/doc/tutorial/arrays.html"]MDA[/URL] you want my advise read every c++ program in ya book and you will understand it coz ya cant hit it from the 1st step... its not that easy !

Member Avatar for ~s.o.s~
0
160
Member Avatar for rowly

Hello, guyz i just wonna check if this the right function dependencies for this table(about angency that supply staff to hotels within moscow) i'll appreciate any Help ! instand cover agency ! NIN contractNo hours eName hNo hLoc ------------------------------------------------------------------------- 1135 C1024 16 Smith J H25 East Kilbride 1057 C1024 24 …

0
71
Member Avatar for boule

[quote=boule;264804]Hi guys, I need to find the size of the activation record of a procedure using the "address of" (&) operator... Any idea how it's done ?? Thanks for your help Boule[/quote] what activation record and what procedure ?!! post your code mate !

Member Avatar for Salem
0
161
Member Avatar for matrimforever

[quote=matrimforever;264176]How do I call a function outside of main or use a parameter to pass a reference? If my function is: [code] void getData(int& diameter, int& price) { cout << "Enter in the diameter of the pizza in: " << endl; cin >> diameter; cout << "Enter in the the …

Member Avatar for matrimforever
0
128
Member Avatar for seibor

[quote=seibor;260533]hi all, i want to know how to set a submit button in asp.[/quote] The example below demonstrates a simple Button control: [code] <form runat="server"> <asp:Button id="b1" Text="Submit" runat="server" /> </form> /body> </html> [ref 1] [/code] ref 1: [URL]http://www.w3schools.com/aspnet/aspnet_button.asp[/URL] please refer to this website !

Member Avatar for fleetblazer
0
107
Member Avatar for rowly

can any one help with this function how it works ! thanks u [code] [COLOR=#0000ff]int[/COLOR][COLOR=#000000] compare([/COLOR][COLOR=#0000ff]const[/COLOR][COLOR=#000000] [/COLOR][COLOR=#0000ff]void[/COLOR][COLOR=#000000] *a,[/COLOR][COLOR=#0000ff]const[/COLOR][COLOR=#000000] [/COLOR][COLOR=#0000ff]void[/COLOR][COLOR=#000000] *b)[/COLOR] { data i= *(data *)a;[COLOR=#008000] [/COLOR]data j= *(data *)b; [COLOR=#0000ff]if[/COLOR] (i.Mark==j.Mark) [COLOR=#0000ff]return[/COLOR] 0; [COLOR=#0000ff]if[/COLOR] (i.Mark<j.Mark) [COLOR=#0000ff]return[/COLOR] -1; [COLOR=#0000ff]if[/COLOR] (i.Mark>j.Mark) [COLOR=#0000ff]return[/COLOR] +1; } [/code]

Member Avatar for rowly
0
128
Member Avatar for rowly

hello, i have a problem with printing records[i].M_F on the screen while reading from a binary file. i'll appreciate any help ! THank U [code] [COLOR=#0000ff]#include[/COLOR][COLOR=#000000] [/COLOR][COLOR=#800000]"stdafx.h" [/COLOR][COLOR=#0000ff]#include[/COLOR][COLOR=#000000] [/COLOR][COLOR=#800000]<stdio.h> [/COLOR][COLOR=#0000ff]#include[/COLOR][COLOR=#000000] [/COLOR][COLOR=#800000]<stdlib.h> [/COLOR][COLOR=#0000ff]enum[/COLOR][COLOR=#000000] sex {m, f}; [/COLOR] [COLOR=#0000ff]struct[/COLOR][COLOR=#000000] student { [/COLOR] [COLOR=#0000ff]char[/COLOR] fname[40]; sex M_F; [COLOR=#0000ff]int[/COLOR] S_AGE; [COLOR=#0000ff]double[/COLOR] W; }; student …

Member Avatar for Ancient Dragon
0
108
Member Avatar for Eadams20

Hello, I couldnt get wt u r trying to do ! but i can tell that ya have problem with [URL="http://www.cplusplus.com/doc/tutorial/structures.html"]structers[/URL] and [URL="http://www.cplusplus.com/doc/tutorial/functions.html"]functions[/URL]... anyways i wrote a hard coded program for you(probably its not what you trying to prove !)...try to use some functions! cheers ! [code] [COLOR=#0000ff]#include[/COLOR][COLOR=#000000] [/COLOR][COLOR=#800000]<iostream> [/COLOR][COLOR=#0000ff]using[/COLOR][COLOR=#000000] …

Member Avatar for Eadams20
0
278
Member Avatar for CDROOM

[quote=CDROOM;263260]Hi I'm biggener in c language and I hope from every one in this forum help me. now I will start first Q How I can write a c program to comput the sum of sequres of numbers from m to n . for exsample:(from3 ot 6) : 3^2+4^2+5^2+6^2=[/quote] think …

Member Avatar for cime63
0
130
Member Avatar for rowly

Hello, how can i check that pushing characters into stack is successful (logically)?

Member Avatar for rowly
0
97
Member Avatar for hazdude
Re: C++

think about it like this ! [COLOR=seagreen]something that hold 30 numbers [/COLOR] [COLOR=seagreen]a loop[/COLOR] [COLOR=seagreen]{[/COLOR] [COLOR=seagreen]input number[/COLOR] [COLOR=seagreen]}[/COLOR] [COLOR=seagreen]compare the numbers[/COLOR] [COLOR=seagreen]a loop[/COLOR] [COLOR=seagreen]{[/COLOR] [COLOR=seagreen]output number[/COLOR] [COLOR=seagreen]}[/COLOR] show us any code and of course u'll get a reply !

Member Avatar for rowly
0
90
Member Avatar for zac_haryy

we r not gonna do ya home work ! just start thinking about the logic of how the program works and write ya pseudocode and zn write ya code... and after that we will Help ya ! cheers

Member Avatar for ~s.o.s~
0
100
Member Avatar for doraemon

wel there is no syntax errors in the program ! but about logical that depends on your output ! just tell us what are you tryin to do ! or what do u expect for an output ! and by the way try to sperate the for loop from other …

Member Avatar for rowly
0
148
Member Avatar for rowly

Hi, can any one tell me what size_t_count does, i couldnt get it . thanks guyz ! [code] fwrite([COLOR=#0000ff]const[/COLOR] [COLOR=#0000ff]void[/COLOR]*_str,size_t_Size,size_t_count,file *_File); [/code]

Member Avatar for rowly
0
354
Member Avatar for rowly

[COLOR=seagreen]hi, i didn't get any reply probably coz ya didn't understand what i mean ![/COLOR] [COLOR=seagreen]alright i'll make it simple.[/COLOR] [COLOR=seagreen]i have a file in excel and i have to read from this file [/COLOR] [COLOR=seagreen]here is the contents of this file[/COLOR] [TEX] [COLOR=seagreen]2,joined,2929828,429.6,2[/COLOR] [COLOR=seagreen]4,toytoy,2929299,122.8,19[/COLOR] [COLOR=seagreen]3,front shift,2299229,205,22[/COLOR] [COLOR=seagreen]3,shift,1111111,222,20[/COLOR] [COLOR=seagreen]...[/COLOR] [COLOR=seagreen]...[/COLOR] …

Member Avatar for rowly
0
102
Member Avatar for rowly

Hello, can you guyz help write a while loop to read this line, for example 2,Joind,2082421,235.6,8 2= number Joind = item 2082421 = item number 235.6 = item price 8 = day all what i'm tryin to do is while reading each line if we encounter a ',' store all …

0
79

The End.