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
~5K People Reached
Favorite Forums
Favorite Tags
c++ x 13
c x 9
Member Avatar for Hannahlv

Hi all, Sorry for putting this topic here. I don't know where is the most appropriate box to post. I'm having a problem with internet connection, and I'm really hoping you will get me out of this. I'm connecting to internet using wireless (I'm using desktop computer by the way, …

Member Avatar for rayjasper0211
0
197
Member Avatar for Hannahlv

Hi everyone, I'm doing an hotel application which has an introduction form. In that form I put a RichTextBox control and a menu toolstrip. I want to load a rtf file to richtextbox when the toolstrip is clicked (The file is a default file chosen by my choice). I can …

Member Avatar for BlackSun
0
125
Member Avatar for Hannahlv

Hi, everyone! I'm doing a p2p streaming project. This project is actually about : the server and client will connect first (socket created), after connect then client will receive the IP address of another client from server, then those 2 clients connect together and start streaming. I can write the …

Member Avatar for Hannahlv
0
343
Member Avatar for Hannahlv

Hello everyone, I don't know what is the exact name to call this, so I call based on what I want to do in my program. Its operation got something similar to chat server and client. I have server and client application. Firstly, when one client connects to server and …

Member Avatar for ArkM
0
113
Member Avatar for Hannahlv

Hi, everyone! I want to make the user authentication for mysql database. I write the code and test it, but can't run. Let's I talk about my project idea first. I have a server, a client and a mysql database. Before entering the server, the user must login first, After …

Member Avatar for Salem
0
189
Member Avatar for Hannahlv

using System; using System.Collections.Generic; using System.Text; namespace EnsembleAnalyzer { /// <summary> /// Tool to calculate and add CRC codes to a string /// /// *************************************************************************** /// Copyright (c) 2003 Thoraxcentrum, Erasmus MC, The Netherlands. /// /// Written by Marcel de Wijs with help from a lot of others, /// especially …

Member Avatar for LizR
0
182
Member Avatar for Hannahlv
Member Avatar for Hannahlv

Hello all, I have overloading method problem with my miniproject. The code is below : [CODE] patients.UpdatePatientsDetail(patientsidTextBox.Text, patientsnameLabel1.Text); [/CODE] Error is : no overload for UpdatePatientsDetail takes '2' arguments Code for this method is : [CODE] public void UpdatePatientsDetail(string strPatientsID, string strPatientsName, string strPatientsAddress, string strPatientsTelephonenumber, string strPatientsDateofBirth, string strPatientsNric, …

Member Avatar for ramiljoaquin
0
135
Member Avatar for Hannahlv

Hi everyone! I'm doing my project related to socket programming. The send and receive part I got problem. The code is below : Server side: [CODE] printf("Handling client %s\n",inet_ntoa(their_addr.sin_addr)); if (send(new_fd, "Menu\n", 5, 0) == -1) //(1) perror("send"); if(send(new_fd, "1. A.mp3, 2. B.mp3, C.mp3\n", 26,0) == -1) //(2) perror("send"); if(send(new_fd, …

Member Avatar for Salem
0
125
Member Avatar for Hannahlv

Hi everyone! I want to call a child program from my parent program. Are there any methods to do this in C++ (platform is Linux)? I searched Google but the material found quite difficult to understand. If have any examples, it'll be better for me (as you know, some people …

Member Avatar for Hannahlv
0
3K
Member Avatar for Hannahlv

Hi, everyone! I thought I posted the code first, it's better. This is the code of the program I've worked with : [CODE] #include "liveMedia.hh" #include "BasicUsageEnvironment.hh" #include <stdio.h> UsageEnvironment* env; Boolean reuseFirstSource = False; Boolean iFramesOnly = False; static void announceStream(RTSPServer* rtspServer, ServerMediaSession* sms, char const* streamName, char* inputFileName); …

Member Avatar for Hannahlv
0
211