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
~1K People Reached
Favorite Tags
Member Avatar for Infame

Hello! I'm having a slight problem with a event... What I'm basically trying to do is: Activate a on button event, that fetches source code, then posts it within the edit window with "SetWindowText(hTextBox, get_source("website", "path"));". Sadly, this didn't quite work out that well, as I recieve a Run- Time …

Member Avatar for BobS0327
0
105
Member Avatar for Infame

Hi! I'm currently making a HTTP protocol bot, it works somewhat fine with a fixed char array, but once there's a website that exeeds 8k, then it cuts off. If it's less, I get weird nonsenscial symbols... Is there a way to know the length before assiging the data to …

Member Avatar for Ancient Dragon
0
153
Member Avatar for Infame

Hello people! :D I have run into a small problem on my website. I decided to create a javascript/ajax/mysql search bar that gives you a list depending on the result... Now, my problem is that the div element just drags the website down... Is there a way to 'overlap', instead …

Member Avatar for carrieathomer
0
45
Member Avatar for Infame

Hi. I'm currently trying to make a comment system. It works great, 'cept, if the user writes </html> or... any other html tag that doesn't close. Now, my initial idea was to convert string, i.e: space(' ', 32) -> &lpsb;, \n -> <br />. For that, I made an array, …

Member Avatar for diafol
0
166
Member Avatar for Infame

Hello guys! [CODE]"SELECT * FROM $tableName WHERE cata != 'abc' AND ORDER BY times desc LIMIT $start, $limit";[/CODE] Is there any reason as to why this block is not working? What is the rule for formating such queries? Thanks.

Member Avatar for pritaeas
0
67
Member Avatar for Infame

Hi! When I made a winform for C# and C++, I got my window up, all the design and features... However, when I maximize it, all of it gets stuck in a corner to the left... Is there a way to resize the objects as the main window increases in …

Member Avatar for abelLazm
0
87
Member Avatar for Infame

Hi! I'm currently trying to make a specific design with gradient. The gradient should be divided into 3 parts, Blue to white then white to blue... I successfully did so with this: [CODE]background-image: -webkit-linear-gradient(top, #0088FF, #FFFFFF, #0088FF)[/CODE]; (Chrome only) I have these ones: [CODE]-webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#0088FF)); …

Member Avatar for scottloway
0
82
Member Avatar for Infame

Hi! I have a server which alows 5 clients to connect to it. I was wondering if it's possible to get their IP, or someother form of ID that sets them apart... I need it so I can assign names, and 'bannish' certain users. Thanks!

0
55
Member Avatar for Infame

Hi! I made a little snippet to play around with... [CODE]int readThis::compareData(readThis &Source) { string sBuff, sBuffcpy; this->cFile.open(zsFile), (&Source)->cFile.open((&Source)->zsFile); if (this->cFile.is_open() && (&Source)->cFile.is_open()) { while(!this->cFile.eof(), !(&Source)->cFile.eof()) { getline(this->cFile, sBuff), getline((&Source)->cFile, sBuffcpy); if (sBuff == sBuffcpy) { if (this->cFile.eof() && (&Source)->cFile.eof()) { return FILE_SUCCESS; exit(1); } } else { return FILE_NOT_SUCCESSFUL; …

0
49
Member Avatar for Infame

Hi... got a problem with this snippet... [CODE]function writeColum () { var x = document.getElementById("wc").value; var y = document.getElementById("title").value; if (event.keyCode == 32) { x=x+"&nbsp;"; } if (event.keyCode == 13) { x=x+"<br />"; } document.getElementById("passValue").innerHTML=x; }[/CODE] Any reasons why it's not working?

Member Avatar for Troy III
0
123
Member Avatar for Infame

Hi! I have a problem with a winsock code. I want it to connect to a irc server, but it won't recieve any readable data... Just alot of "jibberish"... [CODE] #include <string> #include <iostream> #include <WinSock2.h> #pragma comment(lib, "ws2_32.lib") using namespace std; //class lam0rZ { ~lam0rZ() { system("pause"); /*sleep(5000)*/ } …

Member Avatar for thelamb
0
132
Member Avatar for Infame

Hi! I use a paginate feature on my website, it works great on the front page, but when I use it in the comment section I get this: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/content/56/6296656/html/comments.php on line 77 code: [CODE] $query = "SELECT where …

Member Avatar for harrypinto11
0
74
Member Avatar for Infame

Hi. I recently created a PHP Comment snippet. I'm having one slight probleme though. The problem is that the comments stacks up to one big pile of comments. What I basically want is to divide the amount into smaller groups: Page: 1, 2, 3, 4, 5 each page with 5 …

Member Avatar for diafol
0
89
Member Avatar for Infame

Hi there! I recently attempted making a code that would strip certain characters: [CODE]function writeColum () { var x = document.getElementById("wc").value; document.getElementById("passValue").innerHTML=x.replace(/(\<.+>|<\/|<|>)/ig, "[censored]"); }[/CODE] It works fine when showing it in 'live preview', but how can I make the clean value be used in a <form> be used instead of …

0
77
Member Avatar for Infame

Hi! I'm having a slight problem. You see, this is my first webpage; I continued to edit it, 'till the layout looked somehow ok. The design was all based off viewing it from Google chrome. When I borrowed a friend of mines computer, I was greatly shocked... None of it …

Member Avatar for JRM
0
83