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 #4K
~7K People Reached
Favorite Tags
Member Avatar for tiredoy

<table class="filetable" id="filetable"> <thead> <tr> <th width="25%">名称</th> <th width="6%">大小</th> <th width="10%">类型</th> <th width="19%">修改日期</th> <th width="40%"></th> </tr> </thead> <tbody id="FileList" runat="server"> <tr> <td><img src="images/f01.png" />Adobe Dreamweaver CS5简体中文绿色</td> <td>2013/10/14 17:38</td> <td>文件夹</td> <td class="tdlast">0 KB</td> <td></td> </tr> </tbody> </table> this is a table, I want to get the value of each FileName when …

Member Avatar for tiredoy
0
313
Member Avatar for tiredoy

My vitual machine (drived by CentOS) IP is 192.168.1.114 It can be successfully connected using SecureCRT and FileZila. I try to use Curl to implement file uploading and downloading, curl --ftp-ssl ftp://192.168.1.114 It doesn't work and there is no avaliable information on offical site. Who can tell me how to …

Member Avatar for Gribouillis
0
231
Member Avatar for tiredoy

These days, I am busying in building up LAMP environment on CentOS 6.5 While installing phpMyAdmin,problems occur. By convension, I download phpMyAdmin zipped files,and then unzip it to /usr/share/phpMyAdmin. in the folder /etc/httpd/conf.d, I create a new file named phpmyadmin.conf. and add the follow content to it. Alias /phpmyadmin /usr/share/phpMyAdmin …

Member Avatar for matrixdevuk
0
264
Member Avatar for tiredoy

As I describled,I want to use the macro TRACE in conventional chracter-mode programming. When I try directly using the command TRACE(...),I encounted a mistake tips which says that TRACE ,identifier not found. So,what should I do to solve this problem?

Member Avatar for vijayan121
0
204
Member Avatar for tiredoy

Dear guys, I get stuck in a basic problem that is often overlooked. Like this , I can write code in such way. 1.#include"stdio.h" 2.void main#void#{ 3. double x; 4. scanf#"%f",&x#; 5. printf#"%f",x#; 6. } When I input a number like 3.0 ,however the result is a minus number. I …

Member Avatar for zeroliken
0
113
Member Avatar for tiredoy

Dear guys, I get stuck in a basic problem that is often overlooked. Like this , I can write code in such way. #include"stdio.h" void main(void){ double x; scanf("%f",&x); printf("%f",x); } When I input a number like 3.0 ,however the result is a minus number. I don't konw why ,anybody …

Member Avatar for movingcompany
0
75
Member Avatar for tiredoy

Dear friends, These days ,I am learning something related to linear list.In implmenting the function of realloc.I have been pullzed for several days,although I can use "include" method to directly use the function. However , I deeply wonder that how can I write my own code to solve such questions in …

Member Avatar for tiredoy
0
294
Member Avatar for tiredoy

I just wrote a simple code.Since it have no warnings or error attentions from the VC compiler,it TOTALLY doesn't work! What I wonder is whether the problem is due to the sequence of complying as well as how to figure it out. ------------------ Here is the code [CODE]#include<iostream> using namespace …

Member Avatar for tiredoy
0
168
Member Avatar for tiredoy

Aim: I am learning pointer of C,now I want to write a function to change the value of a variable . [CODE]#include<iostream> using namespace std; void change (int * k) { if (*k==1) *k==0; else *k==0; } void main() { int a=1; cout<<a<<endl; change(&a); cout<<a; }[/CODE] I thought that n …

Member Avatar for WaltP
0
124
Member Avatar for kutuup

Hey all, Just trying to build a program in VS2008 using the Allegro library. When I try to build (debug or release), the build completes, but when the program tries to run, I get an error saying that a file called "MSVCR80D.dll" is missing and suggests reinstalling the program. I …

Member Avatar for kutuup
0
656
Member Avatar for wingwarp

if you have read or use [U]Learn C++ in 24hours [/U]is it a good book to learn formor object oriented Programming in c++ is that a good book to learn OBJECT oriented programing to learn graphics...

Member Avatar for tiredoy
0
445
Member Avatar for tiredoy

These days ,I am learning inheritance and dynamic binding. I could figure out what the code means. However, I can't see much point in setting such base classes So,I want to know why should we set up base classes and derived classes

Member Avatar for mike_2000_17
0
228
Member Avatar for tiredoy

Hey,guys I want to print a word in the center of a CMD's window If I can get the size of it,I could calculate the position where I put the word. Anybody who can help me? Much Thanks

Member Avatar for m4ster_r0shi
0
169
Member Avatar for Sonia11

Hi guys, I am stuck in one of my code to count the number of occurrence of each element in an array. Can someone please nudge me towards where I am going wrong. [CODE]for(int i=0;i<r;i++){ for(int j=0;j<r;j++){ if(store[i]==store[j])//array where I need to count the no. of occurrence of elements { …

Member Avatar for L7Sqr
0
4K
Member Avatar for tiredoy

Well, I define a function gotoxy(). [CODE]void gotoxy(int x, int y) //定位到第y行的第x列 { HANDLE hOutput; COORD loc; loc.X = x; loc.Y=y; hOutput = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleCursorPosition(hOutput, loc); return; }[/CODE] However,whenever I use it.There is a flashing cursor which is ugly to see. I want to get rid of it.But I don't …

Member Avatar for tiredoy
0
227
Member Avatar for MareoRaft

What is the easiest way to check if a vector is empty? [CODE]#include <iostream> #include <vector> using namespace std; typedef std::vector<double> Vec; typedef std::vector<Vec> Mat; int main(){ Vec v; // this is what i consider to be an "empty" v if( /*check if v is empty here*/ ) cout<< "v …

Member Avatar for NathanOliver
0
137