The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
22 views

vbs type mismatch: [string]

I have the following code giving me an error and I can't understand why. Set objFSO = CreateObject("Scripting.FileSystemObject") Set objDir = objFSO.GetFolder(strOrigDir) Set colFiles = objDir.Files ...
0
votes
5answers
52 views

DELETE in Access?

I'm trying to use the delete command in Access using the shown specifications, but Access keeps saying "Data type mismatch in criteria expression." Does anyone know what to do?? DELETE ...
1
vote
1answer
18 views

foreign key mismatch on delete command for unrelated record

I have the following 5 tables defined with a few records inserted into the 1st 4. This is using sqlite 3.7.1.7 with foreign key constaint enabled. create table if not exists subject (id varchar(50) ...
1
vote
2answers
53 views

Type mismatch when returning an array

I'm writing a VBScript function, which takes as in put an array of strings and returns an array of the same strings sorted alphabetically. Ideally, I'd like this function to work exactly like (as an ...
0
votes
2answers
90 views

Type value mismatch error with vectors

I get the following error message when I try to run my program: main.cpp|44|error: type/value mismatch at argument 1 in template parameter list for 'template<class _Tp, class _Alloc> class ...
0
votes
1answer
118 views

Got origin_mismatch error in Google+ share api

I want to share some dynamic content on google+. For this I checked it https://developers.google.com/+/web/share/interactive#rendering_the_button_with_javascript <head> <script ...
0
votes
1answer
38 views

type mismatch storing cell value in VBA array

This works with the MsgBox but not when I uncomment the assignment statement I get a type mismatch error. I have an unknown length of strings starting in D1 that I want to store in the array MyArr. ...
1
vote
2answers
46 views

Java InputMismatchException

I have this code and I want to catch the letter exception but it keeps having these errors: Exception in thread "main" java.util.InputMismatchException at ...
0
votes
2answers
55 views

Excel VBA Type 13 Mismatch using Array containing values and strings

I'm having trouble with a Runtime Error 13 "Type mismatch error". I am trying to take multiple lines of code and condense them into one line that is each row placed side by side. The problem is that ...
0
votes
1answer
45 views

Cannot convert from BasicCookieStore to CookieStore

I am going to use cookies in my application so I don`t have to re-login for each requst I make to the server. Further on I have been looking on examples, and it seems that this is done in each of ...
0
votes
2answers
19 views

Mismatch between ADL and actual iPad build

Dear Stackoverflowers, I am trying to build an iPad app with as3 and air. The problem is that i am trying to build for the retina iPad and when im debugging on the computer via ADL it looks one way ...
0
votes
1answer
42 views

Google OAuth 2 and state parameter values need to be registered in redirect url

The state parameter according to the Google Oauth 2.0 docs: Indicates any state which may be useful to your application upon receipt of the response. The Google Authorization Server roundtrips ...
8
votes
2answers
223 views

Murmurhash 2 results on Python and Haskell

Haskell and Python don't seem to agree on Murmurhash2 results. Python, Java, and PHP returned the same results but Haskell don't. Am I doing something wrong regarding Murmurhash2 on Haskell? Here is ...
0
votes
2answers
54 views

php sha1 does not match .Net sha1Managed

I am having problem in matching a SHA1 algorithm in PHP and C# .Net. I need to modify the PHP code to match with .Net value. The code in .Net is as following: DateTime dtNow = ...
-1
votes
2answers
48 views

C++: Returning a templated object from a class, template type mismatch?

I have the following source code with a compiler error. Its obvious what I'm trying to do so I won't try explaining besides by saying that the type node<N>* being returned is not the correct ...
0
votes
1answer
415 views

VBA/Excel Error with Find: Object variable not set or type mismatch

In this macro I'm extracting network data from Visio and putting it into an excel file. In the visio file there are objects which may show up multiple times, but I only want these items listed once ...
2
votes
2answers
211 views

Jenkins Plugin Manager: Digest mismatch error

I just installed Jenkins 1.511 with JDK 1.6.0_38 on Ubuntu 12.04 (AMD64). When I refresh the list of plugins, the list remains empty. The log file shows an error: Apr 19, 2013 9:23:54 AM ...
0
votes
2answers
166 views

Comparing two tables and finding partial match (SQL / Oracle)

I haven't quite found an answer to this problem, it seems a bit tricky (and yes, I am a beginner). I have two tables; eb_site and eb_register and they both have the column id_glo which connects them. ...
1
vote
2answers
36 views

What does this example of using boost::mismatch mean?

I try to understand the following example given here: template<class SinglePassRange1, class SinglePassRange2> std::pair < typename range_iterator<SinglePassRange1>::type, ...
5
votes
2answers
165 views

Type mismatch error between java.lang.String and String

This is really an odd problem, I've never encountered something like it. The following is a helper class I have declared inside a larger class. It runs perfectly fine as is: private static class ...
0
votes
3answers
60 views

Mismatch delete

I have program which implements database of peoples and his companies. I have created dynamic array of pointer to class members instead of dynamic array of class members, cause copying is quicker with ...
0
votes
1answer
103 views

c++: no matching function call, particularly it is declared as parameter type unmatching

g++ compiler complains about: error: no matching function for call to ‘AddressSpace::resolve(ClassOne&, ClassTwo*&, ClassThree&) const’ note: candidates are: bool ...
0
votes
2answers
541 views

EXCEL: Search column for multiple strings, and give cell(s) of mismatch(es)

I want to search into an entire column for mismatches (type-errors I made) compared to the available types I've defined. And in case there are any mismatches I want to have the cell of that mismatch ...
0
votes
0answers
298 views

Caesar cipher java issue

//As the title said if I run the main using a key of 10 or above and input letters who create a value above z when shifted it decodes improperly most notoriously y = 5 for some reason. Why is this ...
0
votes
0answers
62 views

Mismatch result of CC_MD5 between the app from the App Store and Xcode

I use CC_MD5 in my iOS app. The problem is the result of CC_MD5 from the app, downloaded from the App Store, differ from the result from the app, launched by Xcode. What's the root cause of this ...
1
vote
1answer
28 views

website background color different in different computer?

We have put the orange-yellow color (#FFCF21) background for the website http://sblpl.com. But in our client system it displays as very light Yellow and it does not look good at all. What might be ...
0
votes
1answer
190 views

Require.js + jQuery + BlockUI causes mismatch error, why?

In order for jQuery to hook onto require.js, jQuery has to be loaded after require.js. That works fine, but as soon as i include a jQuery plugin called BlockUI, which does some weird AMD stuff (see ...
2
votes
1answer
414 views

Excel vba macro gets type mismatch error in 2007 but works in 2010

I made and tested this macro in Excel 2010 on Windows 7, also tested with another Windows 7 computer but with Excel 2007. Worked on both, but when I try to use it on my work computer (Windows 7, ...
2
votes
4answers
219 views

How to Handle Data Type Mismatch Exception in C

I have a small question. Is it possible to handle data type mismatch exceptions in C? In C++ and other higher-level languages, the code is usually surrounded by try...catch. However, since there is ...
0
votes
1answer
280 views

“Data type mismatch in criteria expression.” Error

I get a "Data type mismatch in criteria expression." error when running this code on one database but it works perfectly fine on another database. When trying to copy the relevent table to other ...
2
votes
2answers
51 views

Templated function name lookup conundrum(ADL)

Given the following bit of code, why is it that the Generic function is invoked instead of the more specific SomeClass based function? template <typename T> class SomeClass { }; template ...
0
votes
1answer
782 views

Tomcat 6 ERR_SSL_VERSION_OR_CIPHER_MISMATCH / ssl_error_no_cypher_overlap

I’ve trouble to use a browser for accessing my SSL/TLS enabled tomcat-6.0.36-windows-x64 server. It works fine with openssl but not with any browser. Initializing looks fine: 16.01.2013 16:45:09 ...
0
votes
1answer
540 views

SimpleCursorLoader onCreateLoader error, return type mismatch

I am using an SQLite database and wish to load it without using a ContentProvider. I am having trouble getting my subclassed SimpleCursorLoader (taken from Usage CursorLoader without ContentProvider) ...
1
vote
1answer
433 views

“Data Type Mismatch in Criteria Expression” Error When Adding Data

Understandably, this is a popular error. However, looking through the others didn't yield much useful information for me. Here is the code: <%@ Language=VBScript %> <% ' variable listing ...
0
votes
0answers
106 views

Android — Parsing RSS — Mismatched Tag

here is my xml <rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:gsx="http://schemas.google.com/spreadsheets/2006/extended" ...
0
votes
4answers
102 views

Java match string with x allowed mismatches.

What is the fastest / clearest way to see if a string matches to another string of the same length with X allowed mismatches? Is there a library that can do this, its not in Apache stringUtils (there ...
0
votes
0answers
73 views

tryin to retrieve Image from database , error (Data type mismatch in criteria expression)

I'm trying to retrieve Image from an Access database put it kept Getting me this Error : Data type mismatch in criteria expression Codes I tried : Dim CMDString As String = "Select DocIMG From ...
1
vote
0answers
65 views

Mismatch columns in the primary key : <target> versus <source>

While merging two DataSets in C# .net framework 4.0, it raised an error: Mismatch columns in the primary key: <target> versus <source> My 1st Dataset is from SQL Server of datatype ...
0
votes
1answer
82 views

Array Project int double mismatch

I have an array project that I need a bit of help with. I have most of it done but I've run into a couple problems towards the end. I have the ability to put in Student Names, Grades, and then have ...
0
votes
1answer
134 views

Sorting arraylist error?

I'm having problem sorting the song list on my music player application. Here's the code: public ArrayList<HashMap<String, String>> songsList = new ArrayList<HashMap<String, ...
2
votes
1answer
438 views

Unsupported format or combination of formats when using cv::reduce method in OpenCV

I am trying to take projections of two matrices (tmpl(32x44), subj(32x44)) along row and column. I have initialised a result matrix as rowProjectionSubj(subj.rows,1,CV_8UC1) Then I call ...
0
votes
1answer
82 views

Verilog contention with next signal

I'm trying to implement the following code: reg [7:0] next_busy; always @* begin next_busy = busy; //default assignment if (condition determined by module input) begin next_busy[0]= ...
0
votes
0answers
132 views

Jasper report layout changed when OS is changed

We are creating JasperReports from our web application using iReport. When we click on preview button in IReport -The .pdf file shows the alignment of all text properly. When I run the same file ...
0
votes
0answers
36 views

Solrj annotations mismatched mappings

I have a Solr schema that contains a field of StrField type and a java class that serves as a bean that has a String variable annotated with the previously mentioned Solr schema field. When I query ...
0
votes
2answers
1k views

Excel macro “type mismatch” error while looping through a column

Every call of this Function results in a Runtime Error '13' Type Mismatch. Why does this happen? Public Function VersionExists(versionId As String) VersionExists = False For Each cell In ...
0
votes
1answer
32 views

Same Color on Two Different Sites is NOT the same

UPDATE: PLEASE DISREGARD THIS POST/THREAD. WAS A STUPID MISTAKE ON MY PART** i'm stumped. i simply am trying to match a color from one site to another site, and when i use the exact same HEX# as a TD ...
0
votes
1answer
147 views

Android jar and source code mismatch?

I have been looking through the android source code for ICS and JB (API15 & API16) and am finding what appears (to me) to be a mismatch between the code and the jar files. More specifically, in ...
0
votes
2answers
2k views

Error parsing XML mismatched tag

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
1
vote
0answers
192 views

checksum mismatch on subversion merge

I'm using Subversion 1.6.17 on a SuSE host to try and merge a single branch into a local updated working copy. I'm getting portions of the merge, then it stops on the same file every time I try with: ...
-3
votes
2answers
82 views

Don't know how to search for a substring within a string

I have two sequences: a: ATGCATGCATGCATGCATGC b: GATGATGCATAGCATGCATGTTTGCGATGAATCGC I want to search sequence a in sequence b and give the position where it is matched. Output for the above ...

1 2