Tagged Questions
The mixed tag has no wiki summary.
6
votes
2answers
7k views
Facebook 'Like' button breaks https/SSL
On an e-commerce website I maintain, I added a Facebook 'Like' button per the instructions here:
http://developers.facebook.com/docs/reference/plugins/like
I am using the iframe method:
<iframe ...
6
votes
4answers
3k views
Mixing VB.Net and C# Code in an ASP.Net Web Application?
The question quite an older and often asked around, i have similar questions here but my question is a bit more specific.
Q1. Is it legal to mix C# and VB.Net code in ASP.Net Web Application? Will it ...
5
votes
1answer
202 views
Questions about converting a mixed-encoding file to UTF8 in Perl
I'm in the process of converting files generated by the ancient DOS-based library program of our university's Chinese Studies Department into something more useful and accesible.
Among the problems ...
5
votes
5answers
349 views
Free .NET Profiler for .NET 4.0 mixed code
I checked out some of the performance profilers mentioned here. But...
EQATec didn't work for me because I have many assemblies I want to profile, and it has a limit on assemblies to profile. How ...
5
votes
3answers
885 views
Final managed exception handler in a mixed native/managed executable?
I have an MFC application compiled with /clr and I'm trying to implement a final handler for otherwise un-caught managed exceptions. For native exceptions, overriding CWinApp::ProcessWndProcException ...
4
votes
2answers
98 views
R: lme4 mixed model error
What is wrong with the following model:
# simulated data yr = 2; vg = 4, fm = 5, gen = 5
mbb <- data.frame( trait1 = rnorm(200, 15, 4),yr = c(rep (1:2, each = 100)),
vg = c(rep(rep(1:4, ...
4
votes
3answers
281 views
Can i use JCheckbox to show “mixed state”
In windows it is possible to show a grayed out JCheckbox, to show that the collection of data which it represents not all items have the same value.
Is this even possible with a JCheckBox?
How do i ...
4
votes
3answers
3k views
Best Product to Obfuscate a Mixed .NET DLL
I have a .NET DLL and application. The DLL is written in C++/CLI and it's "mixed", i.e., partially managed code and partially native.
I have two goals:
1. Obfuscate all the managed code so it can't ...
3
votes
1answer
71 views
Mac target being built with iphonesimulator gcc 4.2
In a Mixed 3.2.5 iOS/MacOS project, there is an existing iOS static library target, and I'm adding a MacOS static library. In the target build settings(all configurations) I
set the Base SDK to ...
3
votes
2answers
182 views
What is the best way to store multiple data type into database
I am designing a database using MSSQL server 2005 to store log values from different devices.
The datatype of the values can be boolean, int-32 or 64 bit-double
There will be a lookup table called ...
3
votes
4answers
326 views
Is it possible to get the Windows logon name with site running asp.net forms authentication?
I have a website with a large user base configured with asp.net 2.0 forms authentication. Before the user logs in via forms authentication is it possible to retrieve the windows login name/user ...
2
votes
2answers
64 views
single level variables in mixed model (lme4) error in R
set.seed(1234)
mydata <- data.frame (
individual = factor(1:10),
M1a = factor (sample (c(1,2),10, replace = T)),
M1b = factor (sample (c(1,2),10, replace = T)),
pop = factor (c(rep(1, 5), ...
2
votes
3answers
290 views
Java - Mixed ArrayLists?
Is it possible to store a mixture of object types in an ArrayList? If so how?
This is what I have tried so far:
List<Object> list = new ArrayList<Object>();
list.add(new String("Hello ...
2
votes
1answer
280 views
C++ calling a ref-class function (mixed code)
I have an application (CLI) that references a mixed-DLL.
The DLL implements a "ref" class with static functions.
Here is the (partial) code for the ref-class
public ref class AAA
{
public:
static ...
2
votes
1answer
171 views
Mixing .NET assemblies (.NET 3.5 and .NET 4.0 Client profile)
We would like to deploy our application targeting the .NET 4.0 Client profile because I believe it is now deployed on most Windows 7 PCs. Some of the components we use do require .NET 4.0 so its not ...
2
votes
2answers
456 views
JAXB XJC compiler disregarding mixed=true on XML Schema documents
XJC seems to be completely ignoring mixed="true" on my XML Schema elements thereby not allowing me to extract text content. From the sample XML below, I need to be able to extract "Title Text." ...
2
votes
4answers
928 views
C++ in mobile apps. How does it works
Tell me.
How is executed binaries (written in c++ ForExample) in mobiles??
Is it only possible as mixed with J2ME or is it possible to execute "RAW" (like exe file) binary.
(In old and new mobiles)
...
1
vote
1answer
101 views
C-Fortran Mixed Programming
I am working on a project where I have to use a Fortran library in C. In the Fortran library there is a common block containing a complex*16, 4x4 array. Now in C, a complex variable is simply a struct ...
1
vote
2answers
203 views
Mixed Programming Fortran and C
I am a Theoretical Physics research student, working in Cosmology. In course of my research I have use to rather huge library of Fortran codes and I used C for my programming needs.
I have been able ...
1
vote
1answer
226 views
boost::operators mixed arithmetic
based on the example here http://www.boost.org/doc/libs/release/libs/utility/operators.htm#example, I have implemented the following derived class of boost::numeric::ublas::vector:
namespace ...
1
vote
0answers
162 views
JAXB : get classcastexception while trying to unmarshall mixed content
JAXB : get classcastexception while trying to unmarshall mixed content node
i use xjc to generate jaxb classes
this is a text
1234
how will i get both text aswell as item node , with out ...
1
vote
2answers
174 views
dtd and mixed content
Does someone know way a mixet content element (in dtd) there is a need to add the "*" at the end?
For example:<!ELEMENT note (#PCDATA|to|from|header|message)*>
I'm reffering to the case where ...
1
vote
1answer
633 views
IE 8 Mixed security content error for HTTPS
I have a web application (.NET 2.0 coded in C#) that displays pages both to logged in users and the general public. When a user logs in, the protocol is switched to HTTPS. The images are being ...
1
vote
1answer
46 views
Debugging application built with mixed ASP.NET versions
I am working on an application built using ASP.NET 1.1 but that invokes services built in ASP.NET 2.0.
Attempts to debug my code by setting a breakpoint and attaching the w3wp.exe process fail ...
1
vote
1answer
212 views
Using in the same time Boost in release and debug mode
The title is just for teasing. :-)
I know it isn't possible, but here is my problem.
My app (a DLL, actually) uses Boost. It also uses an external API, which also uses Boost.
The external API is of ...
1
vote
2answers
668 views
Encryption of a C++/CLI /clr DLL and Assembly.Load()
guys. I'm developing a client software for an online community I belong to. In order to let me write a client to it, the owners and webmasters demand my code to be encrypted (not just obfuscated). ...
1
vote
3answers
2k views
Visual Studio 2005 VB debugging with c++ dll - Mixed Language debugging
I have a vb project which calls functions in a dll.
The dll is created in a separate vs project (portaudio), which is written in c.
The dll c project compiles clean and builds the required dll, ...
1
vote
2answers
608 views
Mixed Language Programming, VB and C++, noob problems with API and pointers
My problem is with understanding the finer point of mixed langage programming
and accessing API's in external libraries. My skills at C++ are nonexistent
and at VB, mediocre.
I have a c++ dll ...
0
votes
0answers
33 views
How to GetTypes() in C# Assembly which LoadFrom mixed mode dll with dependecies?
Assembly myAssembly = Assembly.LoadFrom( aOpenFileDialogAssemblies.FileName );
Type[] t = null;
try
{
t = myAssembly.GetTypes();
...
0
votes
2answers
185 views
Error: Invalid character in name at (1)
I am trying to compile a fortran file along with some .h files in FORTRAN. The .h files contain definition for common blocks of variable. When I compile them in Fortran, I get the following error:
...
0
votes
1answer
23 views
Mixed types in XSD
How to verify XML element with mixed content? Element can contain string "Undefined" or float values.
I think it can be done thru string Restriction with pattern, but maybe a better way exists?
0
votes
2answers
52 views
Data Custom Array Groupping C#
I've been struggling to group some data into an array of this format:
http://pastebin.com/dxkCnzq3
In case your confused it would be something like this (number of type)
new ...
0
votes
1answer
81 views
AQTime: “Force Garbage Collection” button grayed out
I googled around a bit, but couldn't find a reason.
My app is mixed (C#, VB.NET, C++/CLI and native C++). AQTime claims to be able to profile this kind of application, that's why I chose it.
It does ...
0
votes
2answers
52 views
Matlab cannot read this type of mixed format text?
I need to read a text file with strange format using Matlab. The 1st column is Year, 2nd column is Month and 3rd column is Day
1948 9 9 23.0600 5.1100 0.0371 25.6667 17.8500
1948 910 ...
0
votes
1answer
383 views
How to mix few jQuery UI range slider together?
Anyone know how to mix few jQuery UI range draggable slider together?
Sample Image that showing what I mean: Click here
Sample code for single range draggable slider:
<script ...
0
votes
0answers
336 views
Custom Login form for Mixed Authentication mode
We are trying to implement a custom login form for a Sharepoint 2010 site. We need to authenticate 3rd party (forms) as well as Windows authentication. In regard to the Windows authentication we have ...
0
votes
2answers
416 views
How to JsDoc a “mixed” type?
Simple question, how do I document that "Mixed-type"? I know I could just list all possible types like {null|undefined|String|Number|Object} and end up finding myself missing one and making it overly ...
0
votes
1answer
165 views
XML Schema mixed content
So I am writing an XML Schema for a database format for chess games. The moves are in a specific format which I validate with a regex; it looks something like this: <move>Pe2e4</move>. The ...
0
votes
3answers
178 views
Sessions getting mixed up PHP
Hi we have been operating a system for about 500 users online on one centralized dedicated server. Our application is coded in PHP. Recently when we have a reasonable load of about 100 -150 users ...
0
votes
2answers
223 views
Python- Convert a mixed number to a float
I want to make a function that converts mixed numbers and fractions (as strings) to floats. Here's some examples:
'1 1/2' -> 1.5
'11/2' -> 5.5
'7/8' -> 0.875
'3' -> 3
'7.7' -> 7.7
...
0
votes
1answer
182 views
XmlSerializer Mixed Content Deserialization
How do I setup my class to deserialize the following mixed content xml?
<employee>
<name>John Doe</name>
<remark>He is a <match>tall</match> and handsome ...
0
votes
3answers
94 views
Is it possible to set up a mixed architecture Cluster?
I have an x86-64 computer running Linux that I would like to supplement with other non-x86-64 Linux machines.
Is it possible to somehow benefit from the computational power of another machine without ...
0
votes
1answer
864 views