Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
20% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
3
Downvotes Received
19
Posts with Downvotes
13
Downvoting Members
15
7 Commented Posts
~32.7K People Reached
Favorite Tags

85 Posted Topics

Member Avatar for maybnxtseasn

My darli, im lookin too for informations-guides about controls in C/C++ all controls in C/C++ created using CreateWindowEx? just you change name of parameter e? [QUOTE]Use [B]TOOLBARCLASSNAME[/B] in the [B]second paramete[/B]r with CreateWindowEx[/QUOTE] i would like to learn about all control, not only buttons and msgbox :) thats for nobs …

Member Avatar for alfgaar
0
876
Member Avatar for Panathinaikos22

Hello, i use geoIP to find location of visitors but seems like theyr database dont support all Citys/Regions well, im looking for a free-good ip to country provider, This is my website: http://dotest.webege.com/ Now i add geoIP script , so many IP's just are setet in NULL

Member Avatar for chrislim2888
0
149
Member Avatar for Panathinaikos22

How i can make player to dont go inside walls An idea i have is to create a class that draw an model, in that constructor i will add also some informations about model like ID-NAME-Position. So i will create an function that will check if if ( Abs(Player.XYZ - …

Member Avatar for sfuo
0
144
Member Avatar for Panathinaikos22

Hello, How cameras works in games? i should add cameras in every object in game? I tryed add camera only in player and follow player but i have problem with other objects, other objects dont change in screen. I mean when i press UP key to move player the player …

0
55
Member Avatar for Mechizedek

You call that hard core? hehe ;p Anyway, why when i read this word (hardcore) i imagine hard core porno ;p

Member Avatar for Mechizedek
0
175
Member Avatar for Panathinaikos22

Hellowp, im new in php language... anyway... I create somehting like small-forum, check it please... [Site](http://codetesting.atwebpages.com/addpost.php) And this is php code do refresh-navigate header( 'Location: http://codetesting.atwebpages.com/forum.php' ); When i press button "Create Thread" then messsage stored to database and load forum.php, in IE it show my new message directly, in …

Member Avatar for Szabi Zsoldos
0
143
Member Avatar for Panathinaikos22

Because UDP is unreliable protocol i want someone to try my code. For someone who have server, run my code and send packets to your server and then monitor to your server bandwidth usage Sender packet size is near to (Server)Receiver packet size ??? Soz for my english. using System; …

Member Avatar for Panathinaikos22
0
132
Member Avatar for Sahil89
Member Avatar for Panathinaikos22

Hello, i have done a simple TCP Client - Server In my local PC it work but i dont know if i run TCPServer on other pc, it will receive messages from client? i tryed it with my bro but nothing, i also open and ports... maby isp dont allow …

Member Avatar for Panathinaikos22
0
411
Member Avatar for Panathinaikos22

Hello, about online games/programs, can i create a listener wich will catch all datas received from server What i should use? i create a simple TCPClient/TCPListener but i can only make it listen in localhost :/ maby i use wrong classes, i no have idea about theory part... that i …

0
51
Member Avatar for Panathinaikos22

I have 2 files writen in java, if someone can please covert them in C# and give it. The problem is with type of variables and operators, many operators are not overloaded like in java, idk what to say... This one will not work in C# as integer result |= …

Member Avatar for wilen
0
279
Member Avatar for Panathinaikos22

Hello, where is the problem in this code? it seems ok but i get "unresolved external symbol " error" for Server::SetMode() :/ damn // Server.h class Server { public: Server(); static const int MODE_NONE = 1; static int SERVER_MODE; void SetMode(); }; // Server.cpp #include "Server.h" Server::Server() { } void …

Member Avatar for phorce
0
123
Member Avatar for Panathinaikos22

Does try { } catch make program slower? I think only if code on try fail will take a little more timebecause will run catch also... idk what you say;

Member Avatar for sknake
0
6K
Member Avatar for Panathinaikos22

Hello, i want to make this site http://dotest.webege.com/main.php To show datas per pages, how all this work? How i just show 10 recrods per page, how i create dynamic pages? Any link for this, how all that work?

Member Avatar for cjohnweb
0
2K
Member Avatar for Panathinaikos22

Hellow, i want to find location/country of visitors by IP, im looking for any site can do it for me, i want a script from other site to use it in my php file, that script will get location using other server and will return to me location...

Member Avatar for pritaeas
0
104
Member Avatar for Panathinaikos22

Hello guys, well... I want to create an HTML-JScript that will store some values in DB (Like Visitors IP) Because blogspot.com dont give DB, we just can have a html/js gadget, i sayd to use a DB wich is hosted in other server, is that possible? 1) will be 1 …

Member Avatar for aquilax
0
79
Member Avatar for Panathinaikos22

What the hell is wrong with XNA? i use this very simple code and it dont work [CODE]using System; using System.Collections.Generic; using System.Linq; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Framework.Media; namespace XNAMenu { public class Game1 : Microsoft.Xna.Framework.Game { GraphicsDeviceManager graphics; SpriteBatch spriteBatch; …

0
73
Member Avatar for Panathinaikos22

Hello, First of all, VC++ use .NET FW? it means is totaly High language... i dont get the point to learn VC++ when i can use C#, both language use .NET FW, so the reason of "speed" doesn't metter. VC++ & C++ are totaly diferent things... well im ok with …

Member Avatar for dioioib
0
171
Member Avatar for Panathinaikos22

Hello em0s, About COMBOBOX, i want to add dynamic items, but new entrys must be saved somewere... what is best way-right method to do that? store new entrys in a simple file? i must use database?

Member Avatar for Mitja Bonca
0
113
Member Avatar for DoubleZ

[CODE]#include "stdafx.h" #include <stdlib.h> #include <iostream> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { // Declaration of files we will use FILE *fin; FILE *fout; // An help-variable to get ascii from files int i; // Try open given.txt if ((fin = fopen("given.txt", "r")) == NULL) { cout << …

Member Avatar for Panathinaikos22
0
224
Member Avatar for Onlineshade
Member Avatar for peter_budo
0
214
Member Avatar for Panathinaikos22

Hi, im new in Window Programming... i use this book -> (Programming Windows - Charles Petzold) This is my code [CODE]#include <Windows.h> #include <tchar.h> #include <stdio.h> LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam); int WINAPI WinMain(HINSTANCE hinstance, HINSTANCE previnstance, LPSTR szCmdLine, int iCmdShow) { static TCHAR …

Member Avatar for Panathinaikos22
0
145
Member Avatar for Panathinaikos22

Hello, i started learn litle "Game-Developing", i download Tiled QT to create game map, but my question is, (Game will be in java) How i make my character go to specifically positions, i mean, in map are some walls and playrs must not go above the image... An idea is …

Member Avatar for thanatos1
0
122
Member Avatar for Panathinaikos22

Hello, this is my code [CODE]import android.app.ListActivity; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widget.ListView; public class AnimalsActivity extends ListActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); String[] Animals = {"Cat","Dog","Horse","Pig"}; ListView lv = (ListView)findViewById(R.id.listv11); ArrayAdapter<String> _adap; _adap = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, Animals); lv.setAdapter(_adap); } }[/CODE] The problem is with [COLOR="Red"]ListView …

Member Avatar for Panathinaikos22
0
171
Member Avatar for Panathinaikos22

Hello, i want to know what controls are used in this image [url]http://stackoverflow.com/questions/1521640/standard-android-button-with-a-different-color[/url] For Header, seems like TextView with "steColorFilter()", if someone have any idea how i can draw like this give an example. And the 2nd thing i want is, is this in image ListView? ("San Francisco", All Neigh...") …

Member Avatar for peter_budo
0
104
Member Avatar for Panathinaikos22

Hello, i have made this question again, but is something i really want to learn :/ and never i get an complet answer I know enought good C#/Java Windows programming, i also know C/C++ Console programming but i think is time to learn/play with C/C++ Windows Appis ... How i …

Member Avatar for jbennet
0
352
Member Avatar for Panathinaikos22

Hello, how i can draw text to monitor, i dont want to draw it on program form, i just want to print an text in the screen :) TextOut & DrawText i think draw text on form :/

Member Avatar for dmanw100
0
185
Member Avatar for Panathinaikos22

Hello, i want to create something like this (watch after 30 sec, - character creation) [url]http://www.youtube.com/watch?v=8u9hmTMP3as[/url] is that possible in C#? can i use 3D Models in C#?

Member Avatar for Panathinaikos22
0
117
Member Avatar for MORFIOUS

About design is hard part, many times i spend more than 10 hours to find a good icons, good backgrounds and at last i fack it... is really tired part, thats why exist and designers ;p, our work is not design :/... but when you do it for hobby... gl... …

Member Avatar for kamilacbe
0
408
Member Avatar for riahc3

Android is writed in java, you can download Android SDK + Eclipse to write your programs, and btw... C# and Java have about same syntact, so if you know C# you know Java also, you just need spend few hours to learn librarys ;p Here is an guide [url]http://www.youtube.com/watch?v=SUOWNXGRc6g&feature=list_related&playnext=1&list=SP2F07DBCDCC01493A[/url]

Member Avatar for riahc3
0
184
Member Avatar for Panathinaikos22

Hello, i have Eclipse Indigo & and i download Android SDK, atk im working with Android 2.2 version When i run Virtual Device for 1st time everything is ok, but when i close it and i try to run it for 2nd 3rd time eclipse stucks, and i must restart …

Member Avatar for peter_budo
0
119
Member Avatar for Panathinaikos22

Hello, i have [url]http://www.google.gr/search?hl=el&q=fujitsu+lifebook+a530&gs_sm=e&gs_upl=328l1142l1l1707l4l4l0l0l0l2l659l1519l3-1.1.1l3l0&bav=on.2,or.r_gc.r_pw.,cf.osb&biw=1366&bih=639&um=1&ie=UTF-8&tbm=isch&source=og&sa=N&tab=wi&ei=4APjTobBJYrsOf7F3bUE#um=1&hl=el&tbm=isch&sa=1&q=fujitsu+lifebook+a+serie+ah530&oq=fujitsu+lifebook+a+serie+ah530&aq=f&aqi=&aql=&gs_sm=e&gs_upl=15944l15944l2l16124l1l1l0l1l1l0l0l0ll0l0&bav=on.2,or.r_gc.r_pw.,cf.osb&fp=16eb9875fd56a20f&biw=1366&bih=639[/url] I have 3GB DDR-3, 1 x 1GB 533 MHz 1 x 2GB 667 MHz My question is, why i have to low frequency. As i see in market DDR-3 frequency are about 1066-1333 ;p What about dual chanel memorys? maby it goes like this? 533*2 = …

Member Avatar for Panathinaikos22
0
95
Member Avatar for Panathinaikos22

Hello, i want to ask, messing words in array is a good way to encrypt data? or can someone very easy to brake it here is an example [CODE] #include "stdafx.h" #include <fstream> using namespace std; // Decleration for functions void EncryptFile(char c[], int key1, int key2); void DecryptFile(string filename, …

Member Avatar for VernonDozier
0
388
Member Avatar for chriswinter

Hello guys, take a look here [url]http://www.daniweb.com/software-development/cpp/threads/399321/1711492#post1711492[/url] im use too "Array word messing" method, but i dont know if this is safe or someone can decrypt it with 1-2 clicks ;p

Member Avatar for NormR1
0
297
Member Avatar for Panathinaikos22

[U]PS: Maby im not right category, idk;p move it if im not.[/U] Hello again, I found this site, SNIP As i see companys are paying about 25.000£ - 35.000£ for web developers. I live in greece, this numbers here are just a Dream of an programmer. What about life cost …

Member Avatar for jwenting
0
195
Member Avatar for Panathinaikos22

Hello, as i know java source code is visible to ppl, i talk about Desktop Applets, i'm interested to start learn Java/Web Developing, that i want to know is, Can ppl see code of java applet in brwoser? like he can with Java Desktop Appis.

Member Avatar for jwenting
0
268
Member Avatar for Panathinaikos22

Hello, i have eclipse and in my laptop and i have a little problem when i call functions, example: when i create an button and i want to change size... [CODE]Button b = new Button();[/CODE] b.setSize([COLOR="Red"]arg0,arg1[/COLOR]); this is my problem, why eclipse show me as arg0, arg1 and not like …

Member Avatar for Panathinaikos22
0
100
Member Avatar for Panathinaikos22

Hello, is good idea to mess data using array? is this good way to encrypt an message? [CODE] char x[50]; gets(x); for(int i=0; x[i]; i++) { printf("%c", x[i] + An mathematic function here); // Example printf("%c", x[i] + (1800 /2) ^3 * pi); } [/CODE] Here is something i create, …

0
49
Member Avatar for Panathinaikos22

Can i make an application to start run when windows opens? without put program in start up list. Because computers are freezed and there is no point to put it in start up list, there are 2 HD, main partion is freezed were is and OS, and 2nd is small …

Member Avatar for pseudorandom21
0
124
Member Avatar for Dakot

There is no point to learn c/c++, no one today work with consoles and about GUI in C/C++ just nevermind it friend... personaly i like C/C++ syntact but books learn you only console, and the truth is GUI part is a hard part, you cant do much things, just go …

Member Avatar for Panathinaikos22
0
184
Member Avatar for jitendra_tcil

Maby he want to create a simple chat, he want to know how chating works. To create a chat(web-application) you must know about socket programming, there are many quides in google but is little headpain... i looking too for an simple chating system....

Member Avatar for Panathinaikos22
0
105
Member Avatar for eoop.org

[CODE] private void MyTree_DoubleClick(object sender, EventArgs e) { // 1st newbie way, easy way but the problem is with same names ... switch (MyTree.SelectedNode.Text.ToString()) { case "Node 1": MessageBox.Show("I am node 1"); break; case "Node 2": MessageBox.Show("I am node 2"); break; } // 2nd way, right way but and bit …

Member Avatar for Panathinaikos22
0
100
Member Avatar for something78

This code based on custom header files, does exist byself any class in visual studio have to do with bluetooth? im intersting too but i dont want download from others... i would like to learn steps, how a bluetooth works, how can be done in a programming language, to try …

Member Avatar for Seten
0
10K
Member Avatar for Panathinaikos22

Whats wrong with this? [CODE] NAM test // Namee ORG 0 // Memory start point LDA 100 / Load to register A memory adress 100, A=100 ADA 200 // Addd to register A memory address 200, A = 100+200 END [/CODE]

Member Avatar for gizerakos
0
83
Member Avatar for Panathinaikos22

Hola, im looking for custom window borders, i looking for custom draws, for custom graphics... If someone know any site were i can find custom title bar, or whatever have to do with custom window borders... I dont think exist something like this, but who know...

0
47
Member Avatar for Panathinaikos22

Hello, im new with MDI Forms. My problem is when i maximize MDI Form, the title bar goes up on menu strip, i want Title Bar of MDI form to go exactly down from x/y/z control here are 3 pics 1[url]http://imageshack.us/photo/my-images/20/84726569.png/[/url] Here is that what i say 2[url]http://imageshack.us/photo/my-images/847/44409931.png/[/url] Here is …

Member Avatar for Antenka
0
196
Member Avatar for Panathinaikos22

Holla, i use Visual Studio 2010 and as all we know, visual studio dont give any help with C/C++ win32 appis syntax like C#/VB were you type 3-4 words and then a list pop up. Today i downloaded Code::Block, i suprized because it had this feauture with auto-show list with …

Member Avatar for gusano79
0
286
Member Avatar for Panathinaikos22

C is a medium level language ? i guess c++ also that's why C/C++ are faster than others, but i dont think VB/C# example are to slow like some says. That i hear exactly is: (" a ATM Software can't be in High level language VB/C#/Java because are to slow …

Member Avatar for timetraveller92
0
157
Member Avatar for Panathinaikos22

Here is my code, i will also give an example... [CODE]#include <iostream> using namespace std; class Encryption { private: int wp, wk, encryption; public: Encryption() { } Encryption(int password, int key) :wp(password), wk(key) { } int Encrypt_Store() { encryption = wp + wk; cout << "Encypted: ( " << hex …

Member Avatar for xfbs
0
181
Member Avatar for Panathinaikos22
Member Avatar for NotNull
0
112

The End.