Tagged Questions
The type-mismatch tag has no wiki summary.
7
votes
3answers
503 views
Type Mismatch on Scala For Comprehension
I don't understand why this construction causes a Type Mismatch error in Scala:
for (first <- Some(1); second <- List(1,2,3)) yield (first,second)
<console>:6: error: type mismatch;
...
5
votes
2answers
8k views
Create WCF client programmatically
I have a website with a Silverlight-enabled WCF service. The service works fine, and I can browse to the WSDL page in the browser with no problems.
Now, I am trying to create a client in a DLL. I ...
4
votes
1answer
196 views
varargs puzzle?
I'm sure the answer is pretty simple, but I got stuck in this:
Welcome to Scala version 2.7.1.final (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_14).
Type in expressions to have them evaluated.
...
3
votes
1answer
67 views
VC++ Compiler Can't Catch HANDLE and PHANDLE Type Mismatch
I spent a whole day looking for a bug caused by wrongly passing Windows PHANDLE type to a function expecting HANDLE!!! I was expecting the VC++ 2010 compiler to catch such a simple and obvious type ...
3
votes
2answers
357 views
Type mismatch Error : Cannont convert from ArrayList<SubClass1> to List<SuperClass>
Here is my class Structure, and where I am getting error
class SuperClass{
//variables
}
class SubClass1 extends SuperClass{
//variables
}
class SubClass2 extends SuperClass{
//variables
}
class ...
3
votes
3answers
330 views
VB6 type mismatch error
I am getting the following type mismatch error on the following
IF obj.propery THEN
...
END IF
the code I am using is on visual source safe and when other developers run the same ...
3
votes
1answer
194 views
Null check on a COleVariant
Is it possible to do a null check on a COleVariant or at the very least check if it's type is set to VT_NULL? I see that there is a ChangeType() method but was hoping I could somehow figure out what ...
2
votes
2answers
55 views
Making Charts with Named Ranges in VBA
I am trying to write some code that will work through the named ranges I have established already in my Excel Workbook. Each sheet in the workbook has a different layout, which made writing code for ...
2
votes
1answer
192 views
Scala error: Found List[Char], required List[ScalaObject]
I have this snippet of Scala code:
def prologList(l: List[ScalaObject], sep: String) =
"[" + (if (l isEmpty) "" else l.reduceLeft(_ + sep + _)) + "]"
def neighbors(s: State) = ...
2
votes
1answer
230 views
Parametric type + function requires a string as second parameter?
class TestClass[T](val x: T) {
def +(other: TestClass[T]) = x + other.x
}
this definition gives me the following compile error:
error: type mismatch;
found : T
required: String
def ...
1
vote
5answers
71 views
c++ template parameter is ambiguous
I am trying to implement three functions and have a lot of errors all of which have the same signature:
error C2782: 'T0 ColorBurn(T0,T0)' : template parameter 'T0' is ambiguous
error C2782: 'T1 ...
1
vote
1answer
72 views
Access type mismatch on date field with SQL Server express backend
I have a simple access form with an unbound textbox that is used to search for records with a matching date, with the results displayed in a subform. The backend database is stored in an SQL Express ...
1
vote
3answers
64 views
Problems in casting variables
I am trying to construct an object using the following constructor in Java:
public UnaryNumberContract(Comparable<Number> expectedValue, Operations operator, Invariant inv) {
super(inv, ...
1
vote
1answer
120 views
Fixing a Sample Written in Older Version of F#
I found a cool blog article here about using Tries to fix spelling errors, however it was written in an older version of F#.
http://blog.lab49.com/archives/2841
I have fixed most of it except at the ...
1
vote
2answers
91 views
Outlook VBA troubleshooting
I have the following block of VBA code, which should create a popup box with the first name for each contact in my default folder.
Sub DeleteaContact()
Dim myOutlook As Outlook.Application
Dim ...
1
vote
6answers
153 views
Simple Java Modulus Question
I have the following code:
for(int i=0;i<=100;i++) {
if(i % 11) {
System.out.println(i);
}
}
I just want the code to print the number if it's ...
1
vote
2answers
140 views
Generics - Type mismatch when providing a concrete type to a generic class
Simple Java generics question: I have two classes - one of which uses generics to define its type, the other which extends this class providing a concrete type.
public class Box<Item> {
...
...
1
vote
1answer
158 views
Why can't i do this iteration with json data?
I tried this,
var rows = [];
for (var i = 0; i < 10; i++) {
rows.push(['row' + i, i]);
}
data.addRows(rows);
This seems to work but when i do the same with json,
var ...
1
vote
1answer
84 views
Type-mismatch in between List.reduce and defined type
I'm trying to make a function array, which I'm using inside a List.reduce HOF.
I used to have a
let minimax = [| (min : int->int->int); max |]
which was working great, but now I want to get ...
1
vote
2answers
792 views
DBD::SQLite::st execute failed: datatype mismatch
Here's a snippit of perl code:
sub insert_timesheet {
my $dbh = shift;
my $entryref = shift;
my $insertme = join(',', @_);
my $values_template = '?, ' x scalar(@_);
chop ...
1
vote
2answers
398 views
VB6 Type Mismatch in For loop condition
I have been trying to find out why in the following code, the third time through the loop I am getting a Error type 13 Mismatch when the line "For lCount = 0 To maxCount" is being evaluated. I had ...
0
votes
4answers
73 views
How to do calculations with database values in Classic ASP?
I have to do a calculation to an integer value in classic asp, but i keep getting "type mismatch" error on this line: X = tempID + 1
this is my code:
Set TheRS = Conn.Execute("select top 1 xx from ...
0
votes
1answer
56 views
VB6 val(parseString()) gives type mismatch but not when debug
I have code that assigns a value to a double array. It seems to through an error "Type Mismatch".
datamax(i) = val(parseString(curpos, dummy, delimit))
The crazy thing is that if I debug.print out ...
0
votes
0answers
76 views
AssociationTypeMismatch exception creating nested attributes though update?
Well, I'm trying to save a self referenced association but I'm getting the following error:
Tag(#86515410) expected, got Fixnum(#70786770)
This only happens when I'm creating a new nested attribute ...
0
votes
1answer
159 views
Activate windows of files stored in arrays, but getting subscript out of range error?
Sub Merge()
Dim File As String
Dim AllFiles(), Filename As Variant
Dim count, test, StartRow, LastRow, LastColumn As Long
Dim LastCell As Variant
test = 0
ChDir "C:\" 'Insert suitable directory ...
0
votes
1answer
37 views
Activate windows Of file stored in an array? Type mismatch and subscript out of range
I'm trying to write a couple of lines of code that activate the windows of files stored in an array so that I can copy and paste data from one file to another but I keep getting either a subscript out ...
0
votes
3answers
66 views
Xcode: Objective-C: Type mismatch
The product build succeeds, but the test fails. How do I pass the type-mismatch failure reported on the line with STAssertEquals below?
// TransactionSpec.m
#import "Transaction.h"
@interface ...
0
votes
2answers
228 views
Finding last rows in three(3) separate sheets. VBA Excel 2007
I've been trying to write some codes for copying and inserting data between sheets on excel. And part of this process involves finding the last row or 2nd to last row of each of the three sheets. But ...
0
votes
1answer
99 views
scala type mismatch error should be inherited
I've been working on getting a hadoop / scala bridge working on my machine and when I'm setting up the job I am getting the following error from the compiler.
[error] found : ...
0
votes
1answer
263 views
Type mistmatch error - Pivot table filtering through Excel VBA
I have been trying to get a pivot filter to work using an input box. I stole most of the code from http://www.ozgrid.com/VBA/hide-pivot-fields.htm and been applying to my spreadsheet and keep getting ...
0
votes
1answer
764 views
QTP VBScript type mismatch error in function without arguments
I have run into an annoying problem in QTP (Quick test pro) using VBScript.
I have defined this sub in VBScript (I have also tried defining it as a function with the same result):
Sub KillProcess()
...
0
votes
2answers
274 views
Using an If statement, produces runtime-13 type mismatch error
Private Sub CommandButton1_Click() ''Dim rCell As Range
Dim i As Long
Dim rNext As Range
'loop through the cells in column A of the source sheet
For Each rCell In Sheet4.Range("A3:U25")
'loop as many ...
0
votes
2answers
257 views
check if element exists on the sub-list
I can have many Figures on my list. Each Figure can have many Rectangles on its list. I have a problem with my function checkNewRectangleId - this function should ask user about new rectangle id until ...
0
votes
1answer
122 views
XCode - Compiler does not alert about a type-mismatch
Can you just tell me why this ...... compiler does not alert me about a possible type mismatch here ?
NSHour* H1; // My object
if (H1 == nil) doSomething
else H1 = [NSString ...
0
votes
2answers
462 views
Dictionary Type mismatch in VBScript
The error I'm receiving is: Type mismatch: 'stylesheets'
Stylesheets is defined as:
sub stylesheets(collection)
for each key in collection.Keys
response.write(stylesheet(key, ...
0
votes
4answers
2k views
VBScript Type Mismatch
I have a type mismatch in my VBScript script. I know that the value is correct, but not sure why it's coming up.
This is the line where the script terminates:
WScript.Echo "DNS Server Search Order: ...
0
votes
1answer
352 views
“Type mismatch” error when calling a simple method in a c# assembly registered for COM interop
I've build a classlibrary using c# and the .net framework 3.5. In my class library there is a class called Utilities with two methods.
public string Method1(int length)
{
}
public string Method2(int ...