help

Beginner's Guide to Setting Up Qt for C++

Hello, I'm interested in playing around with GUIs and I've been trying to set up Qt for Visual Studio 2008 and MinGW but have failed miserably—in that at times I'd compile the library and it still wouldn't work and others the compile would fail. Can anyone recommend a good guide to set up Qt (or another GUI toolkit if setting up Qt just...

Setting up Paypal to connect to script

I have, I believe followed the set up instructions correctly for connecting paypal to my script.I have a game that is set up to let users buy credits. Right now I have to add the paypal info directly into the database. I get the transaction email, both me and the user confirming the purchase. But it will not show up in my database.Can so...

Programming Websites For Mobile Devices

I am curious how to make a website mobile device friendly.. so what are the best dimensions and how do i make the website figure out whether or not they are on a mobile device. also what do i need to limit on my design and coding to make pages more glitch-free and faster loading... Thank You -Techy ...

Visual Studio 2008 Help System

Is there any way to make the Visual Studio 2008 help system more object aware when querying a property? Let me explain. In good old fashioned VB6, if I create a winsock control, and type winsock1.close and then highlight the close and hit f1, it brings up the help for the close property for a winsock control - and not the close propert...

PHP scrape tool development

hi, i m having html page with two fields username and password. from this page i provide those authentication and making login to yahoomail.. is it possible?? if so, how i can do?? ...

How do I animate a sprite?

I'm using Flex and AS3 to try and create a game, and I'm wondering how I can animate things easily. I would prefer to use sprite sheet images. I'm going to go a head and post the code (It's really short) I got so far, can someone look over it and tell me the best/simplest/easiest way to add animation support? Thank you in advance. <?xml...

How can I addChild a BitmapData or draw a BitmapData to screen?

I'm currently working on a flash game and I need to know how to addChild a BitmapData or draw a BitmapData to screen. If I can't than how can I give a DisplayObject my BitmapData? ...

Iphone Developer Program

Well im on the edge about paying $99 dollars to join the Iphone Developer Program, I have the sdk, but im wondering if the program comes with programming lessons or tutorials, If it doesnt do any of you know where i can learn to make game with opengl es for the iphone/ipod touch?? So my main question is where can i get some good tutori...

Fatal error: Cannot use object of type mysqli_result as array in /home/william/public_html/forums/index.php on line 228

Why won't this work? I keep getting that error. // Setup forum topics, post count and last post xxxxx $query = array( 'SELECT' => 't.subject', 'FROM' => 'topics AS t, pbb_forums AS f', 'WHERE' => 't.last_post_id = f.last_post_id'); $result = $forum_db->query_build($query) or error(__FILE__, __LINE__); ...

PowerPoint 2003 - VBA for entering information into the Notes section?

I am trying to find out how you write VBA to enter a text box into a slide, and enter text. I am also trying to find vba for entering text into the notes section of a PowerPoint slide. Any help would be greatly appreciated. I have tried to find a site specifically for this, but have not been able to do so ...

How to add help to windows forms

I have a fairly simple Windows Forms application that I would like to add 'Help' to. What I had in mind was a simple one page html page that describes some details about the application. I think I would have to add some sort of browser to the application to display the html page. Am I missing other options? Looking for suggestions. ...

MySQL: Group and sum from different tables. Help!

Let's suppose we have three tables T1 ID |Type| Class | Points 111|1 |a101 | 12 111|1 |b104 | 10 112|2 |a112 | 40 118|1 |a245 | 30 186|2 |c582 | 23 T2(Data for Type = 1 only) ID |Type|EPoints 111|1 |4 118|1 |3 T3(Data for Type = 2 only) ID |Type|EPoints 112|2 |9 186|2 |15 And we want to h...

Java: get last element after split

Hi there i am using the String split method and i want to have the last element. The size of the Array can change. examples : String one = "Düsseldorf - Zentrum - Günnewig Uebachs" String two = "Düsseldorf - Madison" i want to split this and get the last item : lastone = one.split("-")[here the last item] <- how? lasttwo = one.s...

Need help with UIText

Hi, I'm trying to make it so that the text displays like Alabama Alaska Arkansas and so on. I mostly just need help on how to make it go to the next line of text lblText.text = @"Alabama:"; i tried doing @"Alabama:" @"alaska:"; but it didn't work. Any thoughts? ...

Show helper text on clicking textbox using jquery

I want to display helper text on clicking on the text boxes. eg: If I click a text box it should help us by saying what to type: Enter username here I have tried below given code but the text "Enter username" is fading out, I want the text to be displayed until the focus is changed to another text box. please, suggest some code for thi...

Where can I find a Delphi online help better than the integrated one?

Is ther any other documentation about delphi than the integrated help. Something like the http://java.sun.com/j2se/1.5.0/docs/api/ or the http://msdn.microsoft.com/en-us/library/ ...just for delphi. Because imho the delphi help is badass bad. ...

How do I have a Tableview go to another tableview.

Right now I have an indexed tableview that goes to a detail view but i want it to go to another tableview then a detail view. Any thoughts? ...

Designing mysql database tips & techniques, and some mysql questions?

Well, I am going to design a database structure, but I don't know where to start. Can you guys help me by answering the following questions? My database is going to store about hundreds of thousands rows/data and serving 1000 ++ users at the same time. It needs to be well designed. Design mysql database structure questions: Q1: I know ...

Objective C - Why do constants start with k

How how constants in all examplese I've seen always start with k? And should I #define constants in header or .m file? I'm new to objective c, and I don't know c. All tutorials and books assume you know c, so I don't understand these things, is there some tutorial somewhere that explains stuff like this? Thanks. ...

SQL: selecting multiple rows per group

I have some records in my table tbl1. There is a column s, based on which I need to retrieve the rows where datateime1 is an old date. If I try the query shown below I seem to get correct results. Now I try to get the two oldest rows of the s1 group. I tried by adding 's1' twice to the IN clause, but that does not work, because the row...