Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
Member Avatar for TotoTitus

Hello everyone, I am using the following code to do a post to localhost: [CODE] $ch=curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://localhost/response.php'); //response.php just spits out json_encode($_POST) curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/html")); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, Array('data' => $xml)); $curl_result = curl_exec($ch); if(curl_errno($ch)) { echo 'Curl error: '.curl_error($ch); } curl_close($ch); …

Member Avatar for TotoTitus
0
2K
Member Avatar for TotoTitus

Hello everyone, I have a new, self made computer, with an AMD Athlon x2 240 2.8 ghz processor, and a gigabyte motherboard. Everything worked fine until a few days ago. I was watching some super-HD video on youtube, when my internal speaker started beeping in a semi-continuous manner. The beeping …

Member Avatar for Rik_
0
204
Member Avatar for TotoTitus

Hello everyone, I am doing a graphics app in C# for a school asignment. I have to make some geometric 3D figures spin around, translate and scale, not too much of a deal, i guess. But there is an issue i do not know to solve: When switching from 'wireframe' …

Member Avatar for TotoTitus
0
172
Member Avatar for TotoTitus

Hello everyone, i'm porting an application from C# to C++, and i find the syntax and all that of C++ rather cumbersome (though C/C++ was my first language). I have a very specific question, and another few more-or-less general ones. The specific question: In C#: [CODE] Bitmap image; BitmapData ImageData; …

Member Avatar for Milton Neal
0
1K
Member Avatar for TotoTitus

Ok, here's the catch: i am using ExtJS + PHP + MySQL to make a real-time chat site, based solely on AJAX requests. Yea, reverse AJAX would be cooler, but i haven't met anything easy to use enough to incorporate. (maybe you could suggest something !) The site would be …

Member Avatar for TotoTitus
0
108
Member Avatar for TotoTitus

Hello everyone, I am doing a login form in ExtJS + PHP, but it does not work. (authentication failed each time) . Here's the code: ExtJS part: [CODE] <script type=text/javascript> Ext.onReady(function() { Ext.QuickTips.init(); var loginForm = new Ext.FormPanel({ url: 'login.php', title: 'Login to goodTalk', frame:true, bodyStyle:'padding:5px 5px 0', width: 252, …

Member Avatar for TotoTitus
0
340
Member Avatar for TotoTitus

Hello everyone. This post will contain an amount of personal feelings within it. I'm not a very experienced/skilled programmer, and my main 'background', if i can call it so is in windows forms applications (Visual C++, C#), where conceptually speaking, everything is driven by events, the only possible difficulties arriving …

Member Avatar for TotoTitus
0
191
Member Avatar for TotoTitus

Merry Christmas everyone! I'm using Lisp in a Box (emacs + GC Lisp) And i tried making a function which takes a number as argument, adds 1 to it if it's negative, and substracts 1 from it if it's positive. (look) [CODE=LISP] (defun enlarge(x) (if (< x 0) (- x …

Member Avatar for Ghost_Buster
0
113
Member Avatar for TotoTitus

Hello everyone, I need some advice. I have been given an assignment to construct some kind of chat application which uses push technology (In C#, so i have socket objects and all that) Reading on the internet, i came to know that push technology means in essence, that not the …

Member Avatar for Diamonddrake
0
902
Member Avatar for TotoTitus

Hello everyone, i 'built' a simple windows forms application, with 2 buttons and 1 picturebox. One button is used for invoking an open file dialog, which prompts for a BMP from the harddisk, which is inserted on the picturebox. The other button should do 'stuff' to the image, in a …

Member Avatar for Sals
0
120
Member Avatar for TotoTitus

I have an asp FileUpload and an asp Button on a page. When i click the button, i want the bytes of the file which was supposedly uploaded to be stored in a session variable. Only problem is that they aren't stored. How should i do this? There's also a …

Member Avatar for TotoTitus
0
3K
Member Avatar for TotoTitus

Hello, i really don't know where to post this. I will be making an application which hides text within the pixels of an image. The language really doesn't matter . //though it will be done in C# Problem is, each image format (jpg,bmp,gif) has a certain structure, and a way …

Member Avatar for jwenting
0
84
Member Avatar for Pamilerin

Please I have a little problem with my project. It goes "A polynomial of degree n is represented as Pn(x)=A0 + a1x + a2x2 + … + anxn Where a0, a1, a2, a3 , … , an are constant coefficients. Evaluation of suc polynomials may be important if Pn(x) is …

Member Avatar for nezachem
0
96
Member Avatar for thewonderdude

Hello, I have to read from a .txt file which has info as such, 10:5:23 2:343:54 1:4:7 and so on. 3 Columns, lots of rows. How can i read each column for example 10 to x, 5 to y, 23 to z.

Member Avatar for jonsca
0
135
Member Avatar for TotoTitus

Hi, i've looked in several places for a how-to on C# DLL's. I made a windows forms application, which beside regular files, has a pure .cs Class File. I would like to extract a DLL from that file alone, how do i do that?

Member Avatar for TotoTitus
0
77
Member Avatar for muzamal

hi i am muzamal.i have a assignment question .somebody can help me. please send me code of this programme.i tried hard but not succeeded.please help me early.emergently send me please .because time is short for me . thanks[COLOR="Red"][/COLOR]

Member Avatar for Lerner
-1
98
Member Avatar for malaks123

help me to create a program determine if the input word is anagram or not anagram of if the words are the same they are identical.......here's my code can you fix it...................plss... [CODE] # include <stdio.h> # include <conio.h> # include <string.h> int main(){ int menu,i,j,ctr=0; char fw[20],sw[20],let; do {clrscr(); …

Member Avatar for TotoTitus
0
129
Member Avatar for niroop

can anybody explain me in detail about the associativity of operators plz....

Member Avatar for TotoTitus
0
78
Member Avatar for TotoTitus

Hello everyone, i'm fresh new here, and i already have a question regarding...well, C#. I've made a Forms Application in which the user submits an image (bmp,png,jpg or gif), and the image suffers some byte-level modifications (obviously, i'm using the LockBits() method). Now, after the modifications are done, the user …

Member Avatar for TotoTitus
0
9K
Member Avatar for TotoTitus

I'm....pretty much new here, posted my first thread yesterday (it's 00:04 here at the moment, so , technically it's yesterday ^^). I've wandered before around, looking for answers, until today, when i really had the need to post, and signed up. I'm a first-year student at the University of Oradea, …

0
35