The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
40 views

[Physics][2D][Collision] What to do after dettecting collision

In the last project (2D top-down game) I had quite simple collision detections and how to deal with it after detection. Everything could move only in 4 directions - up/down/left/right. C.D. worked ...
2
votes
2answers
106 views

A form that does not handle mouse and keyboard event [duplicate]

I want to make a form in Delphi that does not handle mouse and keyboard events and pass them to the window below itself. How can I do this?
0
votes
0answers
14 views

Raise Event From Parent to Child in WPF

I am using custom control where I am performing actions on Shift Key Down Events. When the KeyBoard Focus is within the Control I am able to get the Shift Key Down Event and perform the operation ...
0
votes
0answers
33 views

PHP Custom Error Handler Return Continue to While Loop

I'm using a SQL query to retrieve an array with IP addresses ($ipaddr). I then loop through the array calling 5-6 snmp3_get functions for each IP address. If any of the snmp3_get command throws an ...
-1
votes
1answer
25 views

read data from file if it has spaces

For example data is like this in my file now i want to scan this data and put it into a linked list then how shiuld i do? Because using fscanf will not solve the issue as i have (M tech) as a entry ...
0
votes
2answers
78 views

PHP form handling for dynamically added input fields

I am having trouble with the PHP form handling for dynamically added input fields. The JavaScript and HTML code I am testing with can be found at http://jsfiddle.net/wd5y9/. This part, obviously, ...
0
votes
0answers
9 views

Canceling touch after intercepting touch on a determined view

I have a super view in which I have a subview. Subview is a menu and appears over super view. Initially subview is hidden. When it's visible I don't want touches on subview to pass to super view. I ...
0
votes
3answers
52 views

C# - Handle Exception and STOP Execution

Let us say that I have two classes. Here is the relevant code for the first class called Internet: public void doRequest() { string URL = "http://localhost:4000/HomePage.aspx"; ...
0
votes
1answer
39 views

Windows Phone, Web Services and Catching Exceptions

I have the following code in Windows Phone: public partial class MainPage : PhoneApplicationPage { public MainPage() { InitializeComponent(); } private void ...
-1
votes
0answers
54 views

FileNotFoundException show message then allow user to enter new file name

In my program I have a FileNotFoundException. Now if this happens it gets caught using a try/catch block. Is there a way that if this exception is called, that it would say EXCEPTION DETAILS..... ...
1
vote
4answers
69 views

Counting the number of times an int appears in a file (C++)

I'm trying to learn very basic C++ at the moment and have this task to complete. I'm making a simple program that reads in a file and a value from a user, then counters how many time that value ...
2
votes
2answers
100 views

Save LinkedList to file and Load List back to program

I have a stock control system being used and i have a LinkedList to hold stock objects, now i need to add a method to the program that will allow me to save the linked list to a file and load the list ...
-4
votes
2answers
68 views

Session Handling (PHP vs. JavaScript) [closed]

I am currently working on a little webshop and I need a good session handling for the shopping cart. I worked with PHP and I never used JavaScript, but what is the diffrence when working with session ...
0
votes
0answers
20 views

Handling facebook requests in android

I'm trying to test facebook request handling on android. I use a test user account as a receiver. This account receives the invitation, however if I tap on it, the application is supposed to start and ...
-3
votes
2answers
188 views

load data from file and put into LinkedList java

Im building a student record system that will hold students, now i want to make this file accessable, so that it rememebrs the data. I have two methods: public void loadStudentRecords(String ...
0
votes
2answers
42 views

How can I remove handling from a Magento site?

I would like to remove the "Handling" from the "Shipping & Handling" line of the website, my client charges shipping but never handling. How can I remove this from the front end of the site?
0
votes
1answer
105 views

Java save data from LinkedList to a file

Ok, im currently developing a stock control system, and i have it working, but i want to add a feature so it can save the linked list to a file and have a method to do this called saveData() then ill ...
0
votes
3answers
126 views

Writing data to a text file column wise in C++ [duplicate]

I am a beginner in C++. I have input the values of the variables(belonging to a class) through an array of objects. Now how do I write them to the text file column wise as follows?? Thanks......... ...
0
votes
0answers
16 views

Exception Handling for more than 20 Columns

I have written an 'after update of' trigger for a table which has more than 20 columns. The trigger is fired if the condition is satisfied example- if (:new.column_value is null) then raise ...
-1
votes
2answers
100 views

Session handling using C# [closed]

I'm developing a webpage using ASP.NET and C# backend as SQL SERVER. When the user log-in with there respective password, after it gets successful log-in it should display there user name. i.e like in ...
0
votes
0answers
170 views

JSON Call to MySQL Improperly Handling Variable

I'm trying to set-up open-source software called pushpool which is essentially a JSON rpc server and for some reason I keep receiving "mysql pwdb query failed at fetch" when attempting worker ...
1
vote
0answers
125 views

Generic Exception handling in jsf 2 and spring webflow

I am trying to implement exception handling in our application (primefaces,jsf and spring webflow). I have used FlowExecutionExceptionHandler and this works for some exceptions like ...
0
votes
3answers
100 views

How do you process binary files in python [duplicate]

we had DataInputStream for processing binary files in java , what can we use for these files in python ?
1
vote
1answer
83 views

PHP - Need to calculate the string formula to integer value [duplicate]

I need to convert the formula like string to its calculated value, in PHP. For eg: $str = "(20000+(2000*(40/100)))*(10/100)"; $calculated_value = ????; // Calculated value of the above string ...
0
votes
1answer
129 views

Data File handling in classic c++(much like c)

i m a student and i use turbo c++ for executing my programs. I made the following program.There is a mistake in bold part. The value of count in the output i m getting is zero. There were no errors ...
1
vote
0answers
50 views

Finding errors in LaTeX document, java

So I have a bunch of LaTeX styled documents, one looks like this... \documentclass{article} \usepackage{amsmath, amssymb, amsthm} \begin{document} {\Large \begin{center} Homework Problems ...
0
votes
0answers
17 views

request parameter handling in weglogic and websphere

I have case where-in an external server sends a request(using GET) accesses my server for a job. The request from external server includes job name and other information and also it will have return ...
2
votes
1answer
28 views

Handle method in separate class

in my app I use the same void method very often in different classes. I don't want to write the void code in every single class but be able to call it from a separate class because I often have to ...
0
votes
3answers
91 views

Python problems with error handling (try, except)

I'm new to programming and trying to work out the error handling at the moment. But i keep running into the same problem. When I find an error i want to rerun the script again. The problem is, if you ...
1
vote
7answers
105 views

C++ Help on Class Design Exception Handling

I'm currently learning C++ and practicing my Knowledge by implementing an simple AddressBook Application. I started with an Entry class and an AddressBook class which implements a STL Map to access ...
3
votes
5answers
234 views

Why use try and catch() in C++?

I understand that try and catch() are used for exception handling, just in case an error or crash would occur in the program under certain cases. I also understand how they work. But why use try and ...
0
votes
1answer
86 views

get all empty inputs and store each in unique variable

I have a form with multiple inputs, and before it gets sent I check whether any of the inputs are empty: <input type="text" name="number" id="number" style="float:left;clear:both;"/> ...
0
votes
2answers
55 views

Excel Error Handling for range object

I'm working on an Excel user form where the user can input a range. For example, they can put in "B5" and "B20". I'm trying to do error handling to prevent the user from putting in an incorrect ...
0
votes
3answers
425 views

VB.NET Exception Handling for Something that Returns a Data Set instead of String

My program is throwing an error I should handle. But I cannot return a string message because the it is a function that returns a dataset. Public Function getUserInfo(ByValue testUserIdAs String) As ...
-4
votes
2answers
118 views

The easiest way to write files in vb6? [closed]

i know how to write files in vb6 but the problem is in my file there are many ( " ) and many lines . I dont want to use vbcrlf to enter or """ to give " result. Is there any easy way to make file in ...
0
votes
10answers
123 views

Remove JSON entry by value [duplicate]

Possible Duplicate: Delete from array in javascript I have the following JSON object: [id:84,id:92,id:123,id:2353] How would I go about removing the item which the value is "123" using ...
2
votes
5answers
138 views

Exception handling error: cannot find symbol variable

public static void operation() { try { Scanner input = new Scanner(System.in); String choiceString = ""; char choice = 'a'; System.out.print("Enter letter of ...
0
votes
2answers
79 views

How do I add exception handling to this part of my code?

I have two problems. First, I have created an exception handling in this first part of my code, the try again concept. do { try { if(exitType.length()==1){ char exitChar = ...
3
votes
2answers
197 views

Letting a PHP multi Query continue if errors occur

I've already asked something about catching errors in a multi query in PHP some time ago, but nobody answered. Now I've googled a bit more and understood a bit more of the problem. I got this Code: ...
1
vote
1answer
73 views

RAII resource handling

I have a RAII class: template<typename T> class RAII { public: explicit RAII( T* p = 0 ): p_(p){} ~RAII() {delete p_;} T& operator*() const { return p_;} ...
1
vote
1answer
123 views

Signals handling in C

I made the following program for learning the behavior of SIG_SETMASK. The following program is supposed to block SIGINT the interrupt signal until the func() function calls ...
0
votes
1answer
81 views

Signal Handling in Unix

I am learning Signal handling in Unix and having a hard time understanding what are SIG_SETMASK and o_set in sigprocmask() and what do they do? I understand that set contains the list of signals to ...
1
vote
1answer
48 views

X11: Removing event from queue

I'm creating an FPS demo using an Engine called: Gameplay. I'm currently trying to define a captureMouse() function into the engine so the player can look around the map. I've already been able to pin ...
0
votes
2answers
100 views

Simple VB, handling many buttons

In my VB solution I have a lot of buttons arranged in a grid. When the program is loaded one of the buttons is randomly set to be the right one (You have to click that one to win). Can anybody point ...
0
votes
1answer
21 views

GDB's commands handling

im using GDB to debug a C code in eclipse, and i wanted to ask a question about the GDB handling multiple commands. if i send the GDB multiple commands through an external software for example: im ...
2
votes
0answers
74 views

Exception guarantee examples?

I've been trying to look for examples of basic guarantees, strong guarantees, and no throw guarantees online, but I haven't found any solid examples. Could I get an example of what are basic ...
1
vote
2answers
119 views

How to handle exception so my program still runs?

I'm writing a generic linked list class, and I'm overloading the * operator in my reverse iterator class. Here's what I have: try { return this->item->data; } catch (...) { cout ...
0
votes
1answer
137 views

C - Random crashing when reading file using fscanf/fgets at different iterations [closed]

I am trying to read from the while questions.txt which has the following format: Question\n Difficulty:Cost:Prize\n Correct Answer\n Answer 1\n . . . Answer i\n \n The following is a function that ...
0
votes
1answer
172 views

CheckBox handling oncheck changed in ASP.net

i had a DataList view which i add a check box in the Item Template i want each item i select to increase some counter for examble once it's checked .. i used the following code to handle that ,but ...
0
votes
2answers
87 views

Handle string in PHP, ignoring HTML tags

I am trying to handle a string, of possible input 'something <p>hi</p> <br />' The input string could contain any, or no HTML tags. I want to handle this string without formatting ...

1 2 3 4 5 6