Unit testing library for C.

learn more… | top users | synonyms

0
votes
0answers
5 views

check if data ID exists before insert into sqlite in ios

I want to check data it exists already into myFavorite table -(IBAction)saveData:(id)sender{ NSString *databaseName = @"data.sqlite"; NSArray *documentPaths = ...
0
votes
1answer
19 views

mysql split field value and check condition with two fields

I have table with two column values like this, Question Answer --------- ------- 10#9 yes#no 10#2 no#yes 10#9 yes#no 18#10 ...
0
votes
1answer
23 views

check email address used by others in database, if yes, pop up alert, if no, continue to next step

i am constructing a registration page for new members. after filling in the form, it will proceed to the confirm page. after confirmation, it will proceed to the reg_add.php to add the data from the ...
0
votes
1answer
36 views

How to check if all the keys in a java code are in the bundle?

We are a team who develop a software written in Java, using bundles for internationalization. We are looking for an analysis tool which can check if all the keys written in the Java Code are in the ...
0
votes
1answer
25 views

Creating Enumerator Field in Oracle using values from another table

Greetings Fellow SOFs, My application has a lot of tables. And each table has 0/n number of Enumerators. Everything was going nice and bubbly, then all of a sudden my client now wants to move his ...
0
votes
1answer
56 views

Delphi - idFTP get current Directory

I like to get the current Dir I am into on my FTP Server. I know that I can switch the Dir with idFtp1.ChangeDir('MyDirectory); but how can i check if I am alread into this Dir?
0
votes
0answers
20 views

How to check domain registered?

I find this ask: php domain availability function please, how to add more domain TLD's? (.sk, .cz, .net, .org, .eu) How to create HTML form for check domain is registered? <?php function ...
0
votes
1answer
28 views

why disabled item is still checkable in listview

I want a listView with some items and all of them could be checked. But if the first item is not checked then the other item is not enabled, of course, they should not be checkable at the time. So I ...
-3
votes
0answers
24 views

sql for trigger FOR OLYMPIC GAME DATABASE

I created table name 'OLYMPIC_GAME_TYPE' as: create table olympic_game_type( og_type_id numeric primary key, og_type_title varchar2(50) unique NOT NULL ); with values insert into ...
0
votes
1answer
42 views

php click if human button before showing page content

I need a button on my webpage that must be clicked before the user can see the content , and the buton must be in the same page as the content : like this one ...
-1
votes
1answer
11 views

Nagios check process cpu_load [closed]

i need you help. I have windows 2008 r2 Need plugin for Nagios to check process(like explorer.exe) CPU_LOAD in percent, like in taskmanager When i use snmp, he get me centi-seconds of total CPU. ...
0
votes
0answers
22 views

Simple JQuery function for checking all inputs for data and highlighting errors

First off, the following function does actually work. What the function does: The below JQuery function checks a general form on the page (or you can target a form with an ID) and checks to see if ...
0
votes
1answer
31 views

Test Internet Connection Android

anyone of you can help me?, Wish I could do a test to verify internet connection, I dont want check network state, because it only detects if I have activated internet on my device, y yo quiero ...
-1
votes
0answers
13 views

iOS Check Scanning SDK [duplicate]

I am working on a Finance app (iOS platform) and I am wondering if there is any Check Scanning SDK available on iOS. My app will allow the user to scan a check to get the Routing Number and Bank ...
0
votes
0answers
27 views

how to check if same time,date and id already exist or overlap in database before update database with a new data

I have problem to make a sure that time in same date is not overlaping with stored data. I have patient try to make an appointment with a specific doctor but I need to check if doctor is available. I ...
0
votes
0answers
12 views

Page getting hanged while working with multi select check box

I am using a multi select check box, located around the bottom of my page. A user can check one or more values from the drowdown. Everything works fine until the values in select exceeds the page. ...
0
votes
4answers
27 views

is :checked not working while using Jquery 1.7

Look at this simple code html <input type="checkbox" id="check" >&nbsp;<span id="rm">Remember me</span> <span id="ok">Okay!</span> css #ok{ position:absolute; ...
0
votes
0answers
50 views

Android check internet connection when 3g is available but not accessible

I've been looking for help on the other questions, but can not find something, while in a review activity need internet connection, even with activated 3G but can not connect (have exceeded data use ...
2
votes
1answer
33 views

Is there any way to prevent people from changing ip?

I have some problem to solve. I created a website. Website's member has their(A) own page(like blog) and if someone stays in their(A) page for more than a minute, they(A) can earn some points. And by ...
1
vote
2answers
26 views

Check if all parameters for a given function belong to the same class

I have a function like this: // merge - merge two or more given trees and returns the resulting tree function merge() { if ($arguments = func_get_args()) { $count = func_num_args(); ...
0
votes
0answers
31 views

Get Checked items across multiple pages in Flexigrid

I am new to Flexigrid control and i am looking a way where this scenario works: When we selected a row( in my case a checkbox), and navigate to another page in Flexigrid, when i come back to the ...
1
vote
1answer
32 views

Wix check if .net 2.0 is installed without condition the setup

i have a wix project. I want insert in it a check for .net 2.0 that if there isn't in the machine generates a warning and not an error. In that mode the user can continue with the installation and ...
0
votes
2answers
33 views

CHECK CONSTRAINT in Oracle SQL

I have the following table Goods_In_Wagon(Goods_ID,Wagon_ID,Total_Weight). I need to create a number of if statement check constraint that says "IF WAGON_ID is between 90 and 99 THEN Total_Weight ...
0
votes
0answers
29 views

How can I check if somebody answers my call in Android

I can call some to with this code: private void makePhoneCall(String number) { try { Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:" + ...
0
votes
0answers
18 views

If img is exist jQuery

After user type url and click i want to check if img is exist from this url. And if true i want replace current img by new. How i do this now: $('body').before('<img id="cur-image" ...
1
vote
1answer
29 views

Android: Checking Background Resource Drawable

Please help how can we do a Background Resource Check? Example: Button button1; protected void onCreate(Bundle savedInstanceState) { .......................................... button1 = ...
0
votes
2answers
38 views

php upload file on Edit form, prevent UPDATE if no file

I have a form to Edit existing values in a MySQL table. One of the fields stores the filename of an image, (another stores the folder location of the image) The file has an upload field to upload ...
0
votes
3answers
59 views

Check if year is leap year in javascript

function leapYear(year){ var result; year = parseInt(document.getElementById("isYear").value); if (years/400){ result = true } else if(years/100){ result = false ...
0
votes
0answers
46 views

Check a connection using InetSocketAddress

I created an Android program which test a connection to my server, but I need to check few connections through ports. My code: public void cp(View arg0) throws IOException { ...
0
votes
2answers
52 views

Detect if user is using an iDevice

Is there a way to detect if a user is using an iDevice WITHOUT reading the user-agent (which could easily be spoofed)? I want to have a mobile version (which will have no captcha), but desktop version ...
3
votes
1answer
48 views

checked in checkbox, auto update in checkbox

I'm beginner in JavaScript, and Stackoverflow, but.. i have a problem. Following checkbox looks like this: http://i.stack.imgur.com/gns1B.jpg All dots, are bitmaps, When, I checked 3 options, all ...
0
votes
3answers
89 views

Deferrable check constraint in PostgreSQL

I have function checking mandatory participation as follows: CREATE FUNCTION member_in_has_address() RETURNS BOOLEAN AS $$ BEGIN RETURN EXISTS (SELECT * FROM address a, member_details b ...
0
votes
1answer
49 views

Simple vbscript script that checks internet link's healthiness and switches to backup connection if main dropped

I need to come up with simple solution for an internet gw in SOHO environment. It has 2 internet connections - main via adsl link and backup via USB 3G modem. Both connections export standart PPP ...
0
votes
5answers
56 views

Radio Buttons clear check when clicked again

I have a set of three radio buttons and they have mutual exclusion in them, as I implemented group name property, but the problem is, in the initial stage, none of the radio button is selected, But ...
0
votes
1answer
58 views

mysql split field value and check condition

I have table column values like this, 10#9 10#2 10#9 18#10 16#1 11#2 I have to find the occurance of 10 query like select count(*) from table name where field_value= 10
-2
votes
0answers
34 views

javascript how to check if animation is finished and load iframe [closed]

Hello, guys, i need a help, how to check if animation is finished(just buttons which moving to the left when you click them) and than load iframe(html text to the center div) Thank you!!!
1
vote
1answer
44 views

PHP check if contents are available

I am using random.org in my php script to generate random numbers like that: function getToken($length){ $r = explode(' ...
1
vote
3answers
145 views

Update sheet with data from userform

I have a table and I have the form I built. the user pick a name and surname from the table by the combobox in form the user need to choose from combobox "yes/no" about this name I need a vba code ...
2
votes
3answers
67 views

How to check if a received email is legit?

I'm developing a system which gets emails from PIPE, verify if the email address which from the email was sent is in the client database, and write it into the database. The problem is that I don't ...
0
votes
3answers
139 views

jQuery How to check if an entry has already exist in a table?

i'm using jquery to dynamically adding and removing rows of a table. something like this: http://jsfiddle.net/yvonnezoe/MKfLU/1/ My question is, how can i check if the entry (BOTH output type AND ...
0
votes
1answer
44 views

SMTP/HTTP/FTP status check using PHP

I am in need of a piece of code to check whether the website is alive or down . I think this can be done with php curl or fsockopen . But i do want to check whether other services like ftp, smtp, ...
1
vote
0answers
88 views

How to prevent itemclick event on check change in Ext Js Tree

I added two listeners 'check change' and 'item click' in Ext.tree.Panel. But i noticed that, when ever the check change occurs then it is also triggering item click event also. I wish to prevent this ...
0
votes
1answer
33 views

Nagios return status unknow

i install Nagios on CentOS to monitor some servers, and one of them is a TSM server. I download a plugin written in bash when i execute it in command line it works. ...
1
vote
1answer
226 views

Parenthesis error check for infix to postfix conversion Java

I have been working on a program for infix to postfix conversion and have everything working except that I cannot figure out where to put an error check for a missing left parenthesis. Basically the ...
0
votes
2answers
265 views

uncheck one checkbox as another is checked and submit the form

I am trying to combine two javascript functions into one function. So, I have this chunk of code: <form name="form1" action="testing_page2.php" method="GET"> <p><input id="Main" ...
0
votes
1answer
29 views

iOS - Programmatically check if the app is authentic

How do i check if my iOS app is code-signed with my certificate? or any other way by which i can determine that the app is original? I've seen that its possible in case of Mac, here. Please share ...
1
vote
2answers
243 views

How to focus on editable textfield when checkbox is checked in ExtJS Grid?

I am creating a grid with checkcolumn and celledit. I have 3 columns 1 is for checkboxes and other is editable text field and 3rd is the productname, using celledit to edit the price. When I will ...
0
votes
1answer
92 views

Windows Batch file for checking if a file exists

I have tried to find an answer to my question on StackOverflow but I can only find partial answers and I can't glue them together. :) I have tried to put a short easy batch together but I can't seem ...
0
votes
1answer
63 views

How to check installed application using googlePlay or not in android device

How to check that any android application was installed from Google Play Store(by clicking on Install button) or by downloaded .apk file and install it in device ?
0
votes
1answer
233 views

Checking internet connection in delphi

How, i've made a program that uploads files on ftp server, the thing is that whenever i don't have access to the internet, it appears me an error, which stops running the program and says that i am ...

1 2 3 4 5 11