Marketing guru Andrew Lock interviews the CEO of MemberGate, the premiere membership website, plus tips on creating a loyalty program for your best customers.
Marketing guru Andrew Lock interviews the CEO of MemberGate, the premiere membership website, plus tips on creating a loyalty program for your best customers.
Hello
I am getting following error while attempting to run the Management Portal for ESB Toolkit 2.0:
Event Type: Warning
Event Source: ENTSSO
Event Category: Enterprise Single Sign-On
Event ID: 10536
Description: SSO AUDIT Function: GetConfigInfo (SSOProperties)
Application Name: ESB Toolkit.exceptionHandling
Error Code: 0xC0002A04, The…
Hi all,
I tried the first time to add an appendix to my thesis, here are
the commands that I used.
\appendix
\chapter{Appendices}
\input{appendix}
The output looks than as follows:
Appendix A
Appendices
A.1 My first appendix
.....
It does not look to bad, but what is irritating is the Appendices entry after Appendix A. Is there any…
Hi,
On my quest to learn NHibernate I have reached the next hurdle; how should I go about integrating it with StructureMap?
Although code examples are very welcome, I'm more interested in the general procedure.
What I was planning on doing was...
Use Fluent NHibernate to create my class mappings for use in NHibs Configuration
Implement…
Hi,
Take for example the list (L):
John, John, John, John, Jon
We are to presume one item is to be correct (e.g. John in this case), and give a probability it is correct.
First (and good!) attempt: MostFrequentItem(L).Count / L.Count (e.g. 4/5 or 80% likelihood)
But consider the cases:
John, John, Jon, Jonny
John, John, Jon, Jon
I want…
The following code throws System.UriFormatException:
var uri = new UriBuilder("ftp://user:pass#word@ftp.somewhere.com:21/fu/bar.zip");
System.UriFormatException: Invalid URI: A port was expected because of there is a colon (':') present but the port could not be parsed.
Removing the # symbol from the password field solves the issue.
…
I'm using the ACE OLEDB driver to read from an Excel 2007 spreadsheet, and I'm finding that any '.' character in column names get converted to a '#' character. For example, if I have the following in a spreadsheet:
Name Amt. Due Due Date
Andrew 12.50 4/1/2010
Brian 20.00 4/12/2010
Charlie …
I have the following code and i have a problem in ensuring part of it is used when a IE browser is used, and remove it when any other browser is used:
$.ajax({
url: 'http://mapit.mysociety.org/areas/'+ulo,
type: 'GET',
cache: false,
crossDomain: true,
dataType:…
I have an ItemsControl that uses a DataTemplate. The DataTemplate contains a TextBox, which can receive keyboard focus. I need to be able to move the keyboard focus from the currently focused TextBox in the DataTemplate to the next TextBox, as if the Tab key has been pressed. I've noticed that there is a UIElement.MoveFocus()…
I tryed to create a socket in php and reuse it from other process.
I know this can be done with a daemon script but I want to do this without.
I created a socket and binded it to a specific port.
$sock = socket_create (AF_INET, SOCK_STREAM, SOL_TCP);
socket_set_option ($sock, SOL_SOCKET, SO_REUSEADDR, 1);
socket_bind…
Hi,
My company uses MS Office Communicator Server (OCS) 2007 R2, and I am accessing with C# with the SDK.
If I right click on a contact in OCS, I get the option to 'View Contact Card'. I want access to this via the API!
Unfortunately I can find nothing in the SDK documentation to get at this. There is a method called…
Hi,
I'm using VS 2005 and .NET framework 2.0 SP2 to build an application with a datagridview in it. I'm using Microsoft Word 11.0 Object Library to do the spelling checker on one of the field in datagridview. When it detected a spelling and grammar window would pop-up open on top of the datagridview.
The problem I got…
Greetings,
I have a simple client/server setup. The server is in C and the client that is querying the server is Java.
My problem is that, when I send bandwidth-intensive data over the connection, such as Video frames, it drops up to half the packets. I make sure that I properly fragment the udp packets on the server…
I've just discovered that if I get an object from an NHibernate session and change a property on object, NHibernate will automatically update the object on commit without me calling Session.Update(myObj)!
I can see how this could be helpful, but as default behaviour it seems crazy!
How can I stop this happening? Is…
Hey, I have a wheel segmented into 8 pie pieces, and a picker that is pointing at the currently selected segment (think wheel of fortune). I want to highlight the currently selected segment, and so have started to use Chipmunk to construct the 8 segments, attached to a rotating body, and then the picker that is put…
I have a custom application in C++ that has been used to successfully copy-and-paste an object from the application into MS Office 2003 and 2007 (Word, Excel and PowerPoint). The object opens in our own custom activeX control.
Now with windows XP and PowerPoint 2010, nothing happens on the cut-and-paste. I have…
Hello All,
I would like to filter one column in a table for couple values and show results only if all those values are there. If one or more is missing, then return zero results.
example table
+----+--------+----------+
| id | Fruit | Color |
+----+--------+----------+
| 1 | apple | red |
| 2 |…
Hi,
I have a situation where I am using NHibernate in a WCF service and using a TransactionScope for the transaction management. NHibernate enlists in the ambient transaction fine, but, any changes I make and save inside the transaction, are not visible to any queries I make while still in that transaction.
So…
Hello everyone,
I was working on one of my academic projects and for the first time I needed pure C++ without GUI.
After googling for a while, I did not find any simple and easy to use implementation for logging and created my own.
This is a simple implementation with iostreams that logs messages to screen…
Hello
I'm trying to create what I think should be a relatively simple business rule to operate over repeating elements in an XML schema.
Consider the following XML snippet (this is simplified with namespaces removed, for readability):
<Root>
<AllAccounts>
<Account id="1"…
I am attempting to insert a custom behavior into my service client, following the example here.
I appear to be following all of the steps, but I am getting a ConfigurationErrorsException. Is there anyone more experienced than me who can spot what I'm doing wrong?
Here is the entire app.config…
I've got a small winform application that I've written that is running fine in the IDE. It builds with no errors or warnings. It's not using any third party controls. I'm coding in C# in Visual Studio 2008. When I Build -- Publish the application, everything seems to work fine. However,…