PHP apc session
i would like to know if apc is unique to every user. For example: <?php echo 'start <br />'; $test = 'test'; if(apc_exists($test)) { echo "$test =>".apc_fetch($test); } else {...
View ArticleCan you put three functions in one main?
I've been trying to get three functions to work in the main class, but I keep getting an error or it just shows the first function... can someone help me please? #include <cstdlib> #include...
View Articleproblem with threads
I am having problem with threads in this project, I have to create a thread that will sort the files and the output should be threadedsort.sort is sorted. I keep getting error message Exception in...
View Articleqsort structs
hi i am trying to use qsort on a structure holding dates, i am trying to sort years out first but not having much luck i have in my code incompatible pointer... it is to do with my qsort in main can...
View ArticleObtaining IP address and emailing it
Okay, I'm making some private software and I need the ip address and host name of the computers that run my software, this is because I don't want more people than I have allowed using my software....
View ArticleCircle Calculator Error
I am making a calculator to switch from radius to diameter ect... but i keep getting this error (An error occurred creating the form. See Exception.InnerException for details. The error is: Object...
View Articlehow does one convert network byte order to machine byte order ? O.o
hey guys im trying to make a program that converts my ip to hex just like this website: http://www.miniwebtool.com/ip-address-to-hex-converter and i have not really been successful :L i tried to use...
View ArticleTry catch inside switch java
value2 = Double.parseDouble(txtDisplay.getText()); switch(operand){ case '+': answer = model.add(value1, value2); break; case '-': answer = model.subtract(value1, value2); break; case '*': answer =...
View ArticleWord Counting Program
For a school project I have to write a program that reads inputs and when ended (using CTRL + D) outputs the line count, total words, character total, and unique lines. For example, inputting: hello...
View ArticleSimple Calculator
Well a fer days ago I started doing a calculator using java (I'm still a newbie) using the Jframe, but it gave me a lot of problems. I have no idea how to show you the cade in this seccion, so I...
View ArticleGetting a root of an arabic word
I have a python code that take an arabic word and get the root and also remove diacretics. but i have a problem with the output. For example : when the input is "العربيه" the output is:"عرب" but when...
View ArticleTesting if variable holds a decimal point
value1 = txtDisplay.getText(); //value 1 declared as a double. if(String.valueOf(value).contains(".")){ //then do something......... } Hi there, just trying to find a way to test if a variable...
View ArticleCom Interop VB6 Dll call in asp.net application
Hey guys, I've written an application that calls functions from a com dll in my asp.net application(asp.net or vb.net the issue at hand is no different for either so I picked the more active forum)....
View ArticleI need a hand with this coding (I'm a beginner)
I have a project that I am working on. It is a game where the computer generates a random number between 1-100 and you get 6 oppurtunities to guess the correct answer. Everything seems to run just...
View ArticleBubble Sort Algorithm Animation
Hi there, so I've been working on this code that will animate a bubble sort algorithm using bars. The one problem that i have is that i cant get the bars to do the animation 1 by one so that you can...
View ArticleUsing VB to read HTML
hi, I'm making an auto "happy birthday" thing for facebook.... I can invoke clicks but I'm trying to "count" how many people it has to write it to. How might I do that? I was thinking of using this...
View ArticleRun windows Crashes when executing a delete node function.DLL
main.cpp--------------------------------------- #include "LinkList.h" #include <iostream> using namespace std; int main() { linkedlist obj; obj.pushfront(3); obj.pushfront(6); obj.pushfront(20);...
View ArticleArray Based Stack with template
Hi guys I really need your help... />/> the code is working fine but I couldn't figure out how to use copy constructor to copy an old stack into a new one (double the size when the array is...
View ArticleHow to integrate access and vb.net with codes?
How to integrate access and vb.net with codes?
View Articleexport data from dataset to excel
Hello, i have a question please tell me what changes that i should do to export data from datagrid to excel with Column Header code attached
View Article