The tag has no wiki summary.

learn more… | top users | synonyms (3)

0
votes
2answers
16 views

nil pointer in Pascal

I have a problem understanding the behavior of pointers set to nil in Pascal. I am using turbo pascal 7.0. It seems that when I set two pointers head,tail to nil...they always seem to point to the ...
0
votes
0answers
5 views

move To behaviour not working: Game Salad

I am trying to move an object to 100px left in GameSalad. For that I am doing as below: Behaviour : Move To Position X : sprite.x = sprite.x - 100 Position Y : sprite.y Relative to : scene Speed ...
-1
votes
1answer
31 views

Unknown wrong behavior in PHP IF statement

I'm writing a code to upload a file in PHP. But there is an unknown and strange problem in it's IF statement. It does operations in both true and false condition! Look at the code below please: if ...
0
votes
1answer
45 views

Google Chrome App: Webview behavior

While researching for an issue on <iframe> on Chrome Extension, the <webview> in Chrome Apps caught my eye and got me interested. So i decided to do a small example of the issue i am ...
1
vote
1answer
29 views

strange ruby behavior with a constant

Could someone explain me, why my original constant LIST from the beginning is getting manipulated at the end? I thought constant could be just once initialized. I want to store the manipulations in a ...
0
votes
1answer
37 views

strange behaviour of list() in sikuli

findAll(Pattern("excel_icon.png").similar(0.9)) nn = getLastMatches() print "nn -> ",list(nn) while nn.hasNext(): print "excel --> ",nn.next() The above one is the code. Here, I am trying ...
0
votes
2answers
23 views

Prolog cut operator behaviour

I have these clauses: a(1). a(2). b(a). c(A,B,C) :- a(A),d(B,C). c(A,B,C) :- b(A),d(B,C). d(B,C) :- a(B),!,a(C). d(B,_) :- b(B). When I run the query c(X,Y,Z) the answers are: X = 1, Y = 1, Z = 1 ...
0
votes
1answer
26 views

Multiple Calculated Fields Using Linkable Behavior Not Working

I'm in my ArticlesController trying to display a list of the top article posters sorted by their number of articles DESC. The table also needs to display the total number of points a user has (no ...
0
votes
0answers
20 views

How to make a binary copy of the request in WCF?

I am having an issue here. I want to make a exact binary copy of my WCF request in custom behavior. I used this to create the copy: var buffer = request.CreateBufferedCopy(Int32.MaxValue); request = ...
0
votes
4answers
45 views

Weird behavior of php loops [closed]

<?php $i = 0; while($i<=10 ){ echo '<label for=""></label><select name="comp'. $i++ .'></select><br>'; } ?> I'm using this code for adding 10 ...
0
votes
0answers
57 views

Using Linux CentOS 6.4 on a G7 Laptop, synaptics mouse is interfering

I'm not sure if it is how I worded my searches, but I cannot find anything useful. My problem is that since installing CentOS 6.4 on my HP G7 Laptop, the synaptics mouse causes me lots of problems. ...
0
votes
2answers
58 views

Yii Behaviors and scenario

i have a behavior for my models, the behavior has beforeFind, beforeSave, in methods i override user_id, something like: ... public functio beforeSave() { $this->owner->user_id = ...
0
votes
1answer
13 views

Can't zoom scroll universe java 3d without objects dissapear

Well, this is a bit annoying, when I try to zoom out, my objects start to dissapear and then go black merging with the background so I can't zoom out as much as desire, I'm using a OrbitBehavior and ...
2
votes
1answer
58 views

Emakefile - custom behaviour undefined

My test project is structured this way: ./Emakefile: {"source/*", [debug_info, {outdir, "binary"}]}. ./source/test.erl: -module(test). -behaviour(test_behaviour). ./source/test_behaviour.erl: ...
1
vote
1answer
21 views

apply a user MaxAllowedCall on a wcf Method

I'd like to enforce call restrictions on my services methods. Those restrictions should return a FaultException when the maximum amount of calls per client is reached. The first solution I found was ...
0
votes
0answers
14 views

Office.Interop.Excel reference in different projects - Inconsistent behaviour

I have two projects. Both are referencing Microsoft.Office.Interop.Excel and in Code call: using Excel = Microsoft.Office.Interop.Excel; Both projects Build and Run without Errors on Local Machines ...
1
vote
1answer
39 views

Spring @ModelAttribute and @SessionAttribute behabiour

What is the best way to use SessionAttributes and ModelAttributes together? When I use, for example, a tagged ModelAttribute method and the SessionAttribute on the class, then the POJO is added to ...
0
votes
1answer
71 views

Java - Strange behaviour on PrintStream with custom OutputStream

I am trying to write a program that redirects System.out to a JTextArea (it doesn't have to be a JTextArea), but when I call System.out.println("Test!") the output to the text area is like so: \n ...
2
votes
2answers
47 views

Spark ItemRenderer “shorthand” causing strange behaviour

I have a simple ItemRenderer that is causing strange behaviour when I use it in a Spark List of products. It is defined as follows: <?xml version="1.0" encoding="utf-8"?> <s:ItemRenderer ...
0
votes
0answers
72 views

Wicket Overlaying ModalWindows Submit Link becomes invalid

I'm facing a Problem in Wicket with overlaying ModalWindows. ModalWindow 1 is a save-dialog and contains a form. After some user interaction a second ModalWindow gets displayed. After closing the 2nd ...
1
vote
0answers
25 views

C# svnadmin dump, strange behavior

i've written a c# application to check if a repository should be dumper or not (using some paramenters) I've compiled this application on my computer (Winsows 8) where it works as intended. When i ...
-2
votes
4answers
72 views

Would this be a valid way of running a loop in c++?

If I want to have a while loop: while a variable does NOT equal several different values, is this valid?: while (uInput != ('a' || 'b' || 'c')){ //do something to make it equal one of those } ...
0
votes
0answers
38 views

Modify WP theme's gallery behavior

I haven't found any topic about this specific problem here. Well, at least I couldn't figure out how to solve my problem. I'm not a developper and I am new to WordPress so my question might seems a ...
1
vote
0answers
78 views

android setOnItemLongClickListener conflict with textIsSelectable property set to true

hi all Android experts: I have a listview item layout which uses a TextView, it is set to android:textIsSelectable="true" In my activity I setup the list item long click on open the action menu: ...
1
vote
0answers
50 views

PyCharm: How to run behave.exe?

I want to use behave lib in my program. I write code as in behave-tutorial. But, when I "Run" my tutorial-project, I see in PyCharm-console: C:\Python27\virtualenv\Scripts\python.exe "C:/Program ...
1
vote
2answers
47 views

Custom ClickHandler class

Is there a way to use the Clickhandler interface in GWT to build a custom subclass ? I need ClickHandlers which should react on every second click. Achieving this behavior is not the problem for an ...
0
votes
1answer
29 views

Sort ignores an apostrophe - sometimes (except when it is the only column used); WHY?

This happens to me both on Linux and on cygwin, so I suspect it is not a bug. Still, I don't understand it. Can anyone explain? Consider the following file (tab-delimited, and that's a regular ...
0
votes
2answers
22 views

Strange behaviour of tileable background beneath div

I have a tileable wood pattern as background in an html page. The background looks perfectly seamless when viewed in Photoshop or any other software, but on the html page it looks discontinuous at the ...
0
votes
2answers
38 views

Yii - Attaching a behavior in CActiveDataProvider

I am looking for a way how to attach a behavior to model displayed in a grid view in Yii Framework. The grid view is using CActiveDataProvider and I need every $data element to have a behavior ...
1
vote
1answer
48 views

Is it necessary to call base.OnAttached() in a WPF/Silverlight behavior?

When deriving from Behavior<T>, most code samples explicitly call base.OnAttached() (and base.OnDetaching()) in the overridden methods. Is this necessary, or just 'good practice'?
-1
votes
2answers
113 views

Compile C++ Code to behave the same in Windows and Linux [closed]

I've installed cygwin and use it to program C++ on Windows. I prefer to write my code (these are assignments) in Windows but the code also needs to be able to run on Linux. While the code ports well ...
2
votes
0answers
23 views

How to make Xcode debugger tab active on start then switch back original tab on complete?

When I run my app I have it where it switches to the debugger tab on start, but when it completes I want to have it switch back to the editor tab I was originally at. In the behavior settings under ...
1
vote
1answer
26 views

Building URL for CSS Behavior

I am using CSS3Pie in my my website to allow rounded corners in older versions of IE. In my CSS class I need to add the behavior propery to my CSS class #myclass { border-radius: 10px; ...
0
votes
1answer
24 views

Segmentation fault after invoking free() method but only with certain values

I've got this little simple program in C, I post its code: #include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char *argv[]){ char *char_ptr; int ...
0
votes
4answers
114 views

C program strange behavior of printf

I'm doing a simple implementation of the UNIX wc command and I have very strange problem. If i remove the printf on the 49 line, the program don't work properly. I tried many things, but none of them ...
0
votes
0answers
77 views

How to add a Custom EndPointBehavior to the web.config of the service?

I have followed this article and have created MyMessageInspector and MyEndPointBehavior clases as below: public class MyMessageInspector : IDispatchMessageInspector { public object ...
0
votes
1answer
67 views

Android context sub-menu opened-closed-reopened by itself

I have a context menu which include a sub-menu, when-ever I tap on the item to open the sub-menu, the sub-menu opens/closes and reopens quickly. That's very annoying but more problematic some of my ...
0
votes
0answers
28 views

Java3d - Behavior is not reciving KeyEvents

I've got some problems with reciving KeyEvents with Behavior in java3d. It's strange because the focus is set on Canvas3d object and it recives KeyEvents from ActionListener, but when I create and add ...
3
votes
1answer
52 views

Is it possible, in WCF, to add a global message inspector?

There are a bunch of questions regarding global error handlers and such but none of those address what I need. Is there any way to add a behavior that will attach to every endpoint or service through ...
-1
votes
2answers
49 views

Weird behavior of assertions in Eclipse

I have found a strange behavior of assertions in Java (Eclipse). Easy example: If i execute this... public static void main (String[] args) { assert(getA() == "a") : "Invalid"; ...
0
votes
1answer
65 views

requestAction and useTable in cakephp

I have a problem with the requestAction object of cakePHP. I would like to retrieve the last 5 results of my Model but I use a view Table. So in my action I put $this->Model->useTable = ...
0
votes
2answers
39 views

What is the behaviour that takes a class type and links it to what describes it, without any implicit imports?

First, I'm not sure if my question is well phrased, so if someone could help me phrase it so it's findable by others in the future, comments are welcome. I have the following bit of code: @Override ...
0
votes
1answer
67 views

C#.NET mnemonics unexpected behaviour

I have few buttons in my windows application which has mnemonics.Now if i press multiple keys the events of the button clicks gets fired as i have used mnemonics. But the behaviour is not as ...
0
votes
0answers
82 views

Visual Studio 2012 always starts up with a maximized window, how do I prevent it?

I always exit Visual Studio when its main window is at a certain area on the screen. But when it starts up, its window is always maximized. If I click the maximize button, it is restored to the size I ...
1
vote
6answers
185 views

Uninitialized variable in C

I'm a little bit confused. As far as I know, if you declare an int in C, without initializing it, for e.g: int x; so its value is indeterminate. So if we try to use it or should have undefined ...
0
votes
2answers
39 views

Determining the actual Runtime Type of an AssociatedObject

I have a behavior which I would like to attach to multiple controls and based on their type, I would like to write the logic and for this I need to determine the type of the associated object at ...
0
votes
1answer
53 views

CakePHP Behavior, Component, or neither

I'm new to cakePHP and trying to get my head around when something is best developed as a Model/Behavior or Controller/Component. I have an athletics scheduling system where various types of data, ...
1
vote
3answers
41 views

How this iphone uiview behavior name

How can I make this UIView behavior? I see this in several apps and it's interesting – is this standard or custom?
-1
votes
1answer
106 views

Remove fields in Behavior::beforeSave

I prepare my simplest behavior in CakePHP, works perfeclty in 1.3. Short description: I have form with five inputs (type file), but User add only two files (3 inputs are empty). My behavior remove ...
0
votes
0answers
34 views

does MessageBuffer.CreateMessage really create identical copy of the original Message?

I have a weird problem here. I have one wcf webserivce with multiple custom service and endpoint behaviors. Two of them are conflicting with each other. One behavior creates a copy of the incoming ...

1 2 3 4 5 11