In c#, the out keyword causes parameters to be passed by reference from the callee to the caller.
1
vote
4answers
175 views
While loop with hasNext method as condition keeps throwing ArrayOutOfBounds Exception? (Java)
I'm working on a username/password login using GUI. I'm using a while loop with a hasNext() extension to the file name as the condition to store the information that's in the file into an array so ...
0
votes
4answers
484 views
Session Time Out
I am developing a web site using ASP.Net 3.5 C#. I am listing all the Online users ( users who re logged in on my site) in my site. I want to track and update user's status in Database when a user has ...
1
vote
2answers
886 views
Opencv DMatch distance out of range
I'm using FlannBasedMatcher according to a http://opencv.itseez.com/doc/tutorials/features2d/feature_homography/feature_homography.html#feature-homography . I'm getting error "vector subscript out of ...
0
votes
2answers
15 views
Google Auth2.0 log out
I'm currently trying to make a site where the user can log in with his google+ account. Most of it is working. I get them to grant access to my website. They can log in and I get their name and user ...
0
votes
2answers
193 views
Java heap space with LinkedLists and Nodes
For computer Science I'm coding a program that keeps the "tails" end of head, a Node so that I can add and remove from the Node/LinkedList. This isn't entirely difficult, but I've run into an issue ...
0
votes
2answers
105 views
Get scaling factor of an image when the image goes out of grid
I have a grid that contains an image.
<Grid Name="grid1">
<Image Name="image1" Stretch="None" Source="C:\Users\User\Desktop\image.jpg"/>
</Grid>
If the size of image was ...
0
votes
2answers
66 views
Mimicking User controls
I have a wpf user control with a text box and a checkbox. The usercontrol is presented in a winforms Tab control using a element host. I would like the user control to pop out into a brand new ...
0
votes
2answers
393 views
Mysql - Stored procedure OUT variable return null
My Table Structure is:
DROP TABLE IF EXISTS `child`;
CREATE TABLE `child` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT ...
0
votes
2answers
64 views
take out certain data from file
how can i take out certain information from files
for example:
from file .txt have lot of data
1)a=123
2)b=234
3)c=345
4)e=456
i want to take out information 'a'
do i need ...
0
votes
2answers
2k views
WPF image zooming
WPF: What is the best way to implement Zoom In and Zoom Out option for an Image inside ScrollViewer in WPF at runtime and also other alternative methods for the same
Please provide sample code and ...
2
votes
1answer
188 views
memory leak and GC roots
Trying to detect memory leak in a webapp.
Taken heap dump of the app at the time of crash.
using eclipse MAT to parse the dump.
The collated info from the parsing leads to these 2 conclusions -
...
2
votes
1answer
79 views
Strange output in Hadoop mapreduce
This is a sample from the input file:
1,name1,name2
2,name3,name4
3,name5,name6
and this is my map method:
public void map(LongWritable key, Text value, OutputCollector<Text, Text> output, ...
0
votes
1answer
41 views
Input data from one form to another(external page)
I created a textfield on my index page and I need to input the value of this textfield in the Paypal web site. So when the user type £25 and click donate the Paypal website opens and the value ...
0
votes
1answer
29 views
ArrayIndexOutOfBoundsException : 6
public boolean horizontal(Populate a, int[][][] ar, int row, int col, int dep)
{
ar = new int[6][6][6];
a.pop(ar);
for(dep=0;dep<6;dep++)
{
...
0
votes
1answer
153 views
ZF2 retrieve out parameter from SP call
I have created a stored procedure with following declaration:
DELIMITER $$
DROP PROCEDURE IF EXISTS my_test$$
CREATE PROCEDURE my_test(input_number INT, OUT out_number text)
BEGIN
IF ...
0
votes
1answer
27 views
Capturing audio out for use in a web page
I am wondering if it is possible, using JavaScript, php, or any other method to capture general 'audio out' or line out, and send it to be used in a web page.
0
votes
1answer
53 views
Kick out issue in Application
Ours is an application that has already been to production.
We have maintenance and enhancements for the same application.
When our QA onsite team was testing the application (several logins in the ...
0
votes
1answer
222 views
iOS simulator - trick to using TV Out?
I'm using the iOS simulator from xcode 4.3.1,
and the "TV Out" option doesn't seem to be doing its thing.
I've tried it with a variety of simulated devices and tv resolutions,
but always just get a ...
0
votes
1answer
137 views
Zoom out automatically on iPhone safari browser using javascript
I have designed my webpage to fit an Iphone screen perfectly. It has a small text box in the top corner.
When the user clicks on the text box to type in the text, the Iphone browser automatically ...
0
votes
1answer
1k views
Linux server runs out of java memory
Looking for a solution or some tips on how to figure out what is wrong.
Looking at heapdumps with VisualVM tool which just shows references are being held. Is there a better tool I can use? Is ...
0
votes
1answer
29 views
re: fbml phase out
I have apps in fbml
just received an email saying they will no longer work on june 1
what do i do?
they say I have to create new apps in html
surely there is another easier way to transition the ...
0
votes
1answer
143 views
Jquery droppable out function
Why the alert in the out trigger is not displayed?
The dop trigger is working fine, but out trigger isn't:
$(".ui-droppable").droppable( {
accept: '#cardPile div',
hoverClass: 'hovered',
...
0
votes
1answer
403 views
linq query lock issue (linq to sql)
I got a linq query time out exception. After a bit search online, using TransactionScope to make it 'nolock' gets my vote. However, after using the below code, i still get the same time out exception. ...
0
votes
1answer
235 views
jquery/js images out of a box preview effect
I am building a web page for a software (not a browser but this software uses webkit as it's rendering engine). The window of this software has a size of 800x600 pixels. Users will be able to download ...
0
votes
1answer
893 views
XPConnect (Firefox) - how to get value out of object
I'm trying to create a read from clipboard javascript function, and it's generally working, but I can't seem to extract the actual string from the object I create with the out parameter ...
1
vote
0answers
39 views
mono - how to use ref with CreateInstance or InvokeMethod?
How do I pass by 'ref' using CreateInstance in Mono?
Example:
public MyMethod(ref SomeType data) {...
...
SomeType st = new SomeType();
object handle = Activator.CreateInstance(type, new object[] { ...
1
vote
0answers
57 views
How to read bytes in chunks to avoid out of memory exception? Or something else
after searching and trying to find a solution for 2 days i finnaly decided to post here to ask for help...
I have a code to read and write bytes of a file (like an hex editor) working very good taken ...
1
vote
0answers
341 views
Struct declared in C# passed as out parameter to C code is not modified (P/Invoke)
Here is the problem I am having... I have the following C function:
GTO_EXPORT(int ) GtoCapFloorVCCustom(
TDate valueDate, /* (I) value date */
int moneyMarketDen, /* (I) 360 or ...
0
votes
0answers
16 views
Wordpress 3.5.1 load content outside wordpress
Im trying to load wordpress in a subdomain specifically trying to load wp menus, but when i try to call to wp-load i receive "Unable to establish database connection"
I'm trying to call to wp-load ...
0
votes
0answers
17 views
Static IntPtr access into and out of anonymous method
A (global) static IntPtr var is passed to a p/invoke DLL interop call which places a valid handle to a USB device in regular code into that var.
private static IntPtr commHandle = (IntPtr)0;
When ...
0
votes
0answers
13 views
setConnectTimeout causes hang?
hi im trying to test a proxy but if i set setConnectTimeout over 1500 it causes to programe to hang it just dies nothing gets printed my processor and memery arint doing much it just dies does anyone ...
0
votes
0answers
19 views
Use of unassigned out variable though i assign it a default value
using System;
namespace Examples
{
public class HelloWorld
{
public static void Main(string[] args)
{
int y=5;
A(out y);
}
public static void A(out int x)
...
0
votes
0answers
50 views
VB.NET File Binder out of memory Exeption
OK guys, I got this code from a tutorial in YouTube about a file binder which works fine, but has a problem with big files, it will throw an out of memory exception.
My question is how would I read ...
0
votes
0answers
9 views
Is there a way for a Jbutton to read a JLabel's visibility and act if it its false/true?
Can I make a JButton that finds out if a JLabel's visibility is true/false? example is:
I have two JButtons named "Click 1" and "Click 2", I have a JLabel named "1", 1's visibility is set to false, ...
0
votes
0answers
72 views
connect timed out issue with ldap
Can somebody explain me the cause of this exception? I have an application in which authentication is happening with LDAP.Once user logs in to the application then after navigation for say 30 mins or ...
0
votes
0answers
156 views
Unmanaged DLL char[] out parameter in C#
I have been trying to get this function call working, and just can't seem to get the out char[] parameters right:
unsigned long eqDepositValidateAccount (const char * pszPIN1,
const char * ...
0
votes
0answers
98 views
MessageTimeoutException: Timed out waiting for response in Spring Integration
I am using Spring integration to integrate various components over TCP network. I am setting payload as my own user defined object. I am sending the request to component and recieving the response ...
0
votes
0answers
115 views
OPC device -server - computer-time out error
I have a OPC device, a modem (server) and a computer(host) now. I want to access it but when I tired it I got and time out error. Can it be from server or automatic IP address selection. OPC device ...
0
votes
0answers
73 views
Log out in Silverlight 5 using WCF RSS
everybody.
I'm developing an app that is in Silverlight 5 using WCF. The login is validated using Active Directory. My problem is that the app requires a timeout session. I mean, the app must to log ...
0
votes
0answers
231 views
IPhone and IPad Zoom out
We developed an HTML5 website for iPhone and iPad. Our client wants a Zoom option in iPhone and ipad.
I am using the following tag for zoom options.
<meta name="viewport" ...
0
votes
0answers
118 views
out of memory at starting, only on 64 bit
I'm working on visual studio 2005 and my application works well on 32 bit windows xp and 7, but on win7 it crashes out of memory and even is not able to start. That`s just at the beggining of ...
0
votes
0answers
120 views
Curl error in my application
I get this error in my apps.
Fatal error: Uncaught CurlException: 28: connect() timed out! thrown
in /usr/local/www/myappsdomain.com/facebookapp/base_facebook.php on
line 853
How can I fix ...
0
votes
0answers
497 views
Why is my page iframe application blank for some users? (Facebook request time out)
I have an incredibly simple application that simply fan gates and then offers a form to fill out (contest). I receive and parse the signed_request and display content based on the like_status. My ...
0
votes
0answers
74 views
Inner Div Pushing Outer Div
I've been trying to figure out this puzzle for the longest time. I'm trying to simulate a traditional HTML table tree structure using divs with table, tr and then td.
Firefox and Google Chrome ...
