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
~24.3K People Reached
Favorite Tags
Member Avatar for Dave Sinkula

With regard to C++ books, I'll just echo the advice here .The following books are recommended; read them in mostly the order listed." Accelerated C++ " Andrew Koenig & Barbara Moo " The C++ Standard Library " Nicolai Josuttis --- a "must have" " Effective C++ ", " More Effective …

Member Avatar for shahidali6
11
10K
Member Avatar for mikki2

hi, this is a simple program but i have no idea what the [inlinecode]args.length[/inlinecode] is for. [code] class PrintArgs { public static void main (String[] args) { for (int i = 0; i < args.length; i++) { System.out.println(args[i]); } } }[/code] i added a few more lines(below) to the code …

Member Avatar for masijade
0
10K
Member Avatar for mikki2

Hi! I'm trying to make a flash intro for a client. I can make all the flashy effects and all that...but I have no idea how to make an intro that automatically redirects to the homepage when it's done. I can't find any tutorials about it...so I'm betting it's something …

Member Avatar for sreein1986
0
68
Member Avatar for mikki2

Hi, i am creating a website for a friend and she wants a blog added to it, which is no problem for me. but she also wants to be able to view/review peoples posts BEFORE she allows them to be posted. And thats where i have the problem. i haven't …

Member Avatar for nav33n
0
86
Member Avatar for mikki2

Hi! How do i add "extras" to comment boxes like is done in the comment box, which you will use to reply this post? You know, the "change font color" icon, "bold", "italics", etc... i checked daniweb's source code and i saw <script> tags and an array within a variable …

Member Avatar for mikki2
0
98
Member Avatar for mikki2

hi, below is a link to Apples website. Scroll down to the center of the page and on the right there is a menu : "Recent Stories". It has sub-sections like "Small Business" "Science" "Games" etc... heres the link: [url]http://www.apple.com/startpage/[/url] When you hover over these subsections, its "section block" scrolls …

Member Avatar for mikki2
0
106
Member Avatar for Confused@JS

I need help positioning my sidebar on my browser. Every time I scroll down the sidebar follows down the screen causing me to lose half the info on the sidebar and only showing what fits in the screen. It has became a really pain in the @ss and I would …

Member Avatar for mikki2
1
218
Member Avatar for mikki2

hi, i am trying to put an image into the title. i mean like daniweb's title icon is the blue "db" and google's "G", you know...the image in the location bar? sorry i dont know how to explain it properly cuz i dont know what it's called. Thanks

Member Avatar for mikki2
0
122
Member Avatar for mikki2

hi, i am trying to display a random product from my database along with its description, price and image. but i am having a little trouble. i can display a random product and its info by directly inputting it into an array, but i can't call it from the database …

Member Avatar for mikki2
0
201
Member Avatar for mikki2

hi, i am trying to make a simple catalog website without checkout. the user clicks on a product he want and it's displaced on another page...simple. the first page (the one with the product list) has the following code... [code] <?php $sql = "SELECT * FROM products"; $result = mysql_query($sql); …

Member Avatar for mikki2
0
150
Member Avatar for mikki2

hi! i just started learning photoshop about 2 months ago and i want to learn how to create designs like the one in the link below. but i dont know where to go to learn it. i have tried a few site but cant find anything of the sort. i …

Member Avatar for HI2Japan
0
148
Member Avatar for mikki2

hi, i am creating a social network site for a class for graduation and i need a little help in creating a script that will allow users send messages to each other. i want them to send massages to each other on the site not by email. but i am …

0
63
Member Avatar for mikki2

Ok first off i think this problem is similar to the one in the thread "Problem with div structure" but since i'm not sure if they are the same i will go ahead and post this one. here's what i've being trying to get it to look like: [URL]http://i175.photobucket.com/albums/w127/Tadtoad/needhelp1a.jpg[/URL] but …

Member Avatar for mikki2
0
121
Member Avatar for mikki2

hi, i just started a class called Compiler Principles, and i'm not really sure how to search for online notes about it. my searches usually give me pages with Compiler Construction or Assembly Language. the book i'm using is a pdf i accidentally downloaded months ago when i was looking …

Member Avatar for happygeek
0
92
Member Avatar for mikki2

hi, i think i have overwritten ActionListener from my compiler( dont know if it is possible). i accidentally saved a file as ActionListener.java and now anything i try to compile that need ActionListener doesnt work. is there a way i can get it back? i already uninstalled and reinstalled my …

Member Avatar for mikki2
0
77
Member Avatar for mikki2

hi! this prgram is supposed show a gif file on a web page. i can't seem to get this to work as it should, even when i copy it word for word. i've tried other small programs that display a picture of your choosing onscreen. but they too never work. …

Member Avatar for peter_budo
0
84
Member Avatar for mikki2

hi, i dont want it to seem like everytime i have a problem i come to this forum...but i just need to cover all bases b4 my exam in a month...thanks for understanding. my question is..is there any way to write the following program WITHOUT using a [inlinecode]while[/inlinecode] loop? i …

Member Avatar for mikki2
0
152
Member Avatar for mikki2

hi just have a question to make sure i understand it. i'm doing the exercises in my book and it says i should create a program which will roll 2 dice and produce a random number then adds the sum of the outcomes. [code] public class RollDice { /* This …

Member Avatar for mikki2
0
109
Member Avatar for mikki2

hi, i'm new to java (being studying for a few days now) and i'm stuck on the following program. it's supposed to bring up a screen and ask me to input a number...but it always say there's something wrong with the line [inlinecode]userInput = TextIO.getInt();[/inlinecode]. can anyone help me out...thanks …

Member Avatar for iwlu
0
95
Member Avatar for mikki2

hi i have a problem but i'm not sure if this post goes here or not. anyway here goes. i just started a course in chinese and the name is"huibian yuyan sheji" (for those that understand chinese) which translates to "compilation language and design". now i have typed the english …

Member Avatar for julesjacobs
0
87
Member Avatar for mikki2

hi i am trying to "divide" the following code...so that it has a header file and the main file. i tried to seperate the it but when i do it says "nothing to do at all" or "nothing happened at all"(one of them) ere is the original code. can you …

Member Avatar for mikki2
0
318
Member Avatar for mikki2

hi, have a little problem using fstream. first here is the code... [code] #include<iostream> #include<fstream> using namespace std; int main() { string word; ofstream outl("biscuit.txt", ios::out); cin>>word; outl<<word; system("pause"); return 0; } [/code] using this, i can type a word into the input screen and it saves whatever word i …

Member Avatar for mikki2
0
2K
Member Avatar for mikki2

hi, i'm new to c++(just 3 days) and new to this forum too (so pls go easy on me). my problem is i can't remember how to use the for, while and do loops. but when i see a program with these loops in them i completely understand the program …

Member Avatar for Dave Sinkula
0
174