The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
3answers
11k views

MySQL: Large VARCHAR vs. TEXT?

Apologies if this is a silly question, could use an opinion: I've got a messages table in MySQL which records messages between users. Apart from the typical ids and message types (all integer types) ...
17
votes
2answers
223 views
+50

How can I stop my application from recieving a certain “message”?

POSSIBLE SOLUTION FOUND! I believe I have found a solution! I will be continuing testing to make sure it DOES in fact work, but I'm hopeful :) I have detailed how I found the solution in EDIT THREE ...
9
votes
7answers
2k views

Why would you use a message based system?

What are the motivations for using a message based system? I'm seeing a lot about service buses such as NServiceBus and Mass Transit and I'm wondering what the benefits of the underlying methodology ...
8
votes
3answers
2k views

What is the difference between WM_QUIT, WM_CLOSE, and WM_DESTROY in a windows program?

I was wondering what the difference between the WM_QUIT, WM_CLOSE, and WM_DESTROY messages in a windows program, essentially: when are they sent, and do they have any automatic effects besides what's ...
7
votes
2answers
303 views

Message delivery sequence in akka actors

I'm pretty new to Akka and couldn't find the answer in the reference manual. Suppose we have remote actors distributed in the cluster of 3 machines (A, B, C), where one actor lives on each machine ...
7
votes
2answers
349 views

Django: Remove message before they are displayed

I know this question sounds weird, but please, let me explain myself. I'm using a decorator to make a message persist until the user actually dismisses it (like the behavior of stack overflow's ...
7
votes
5answers
344 views

Do you end your exception messages with a period?

I've seen both exception messages with and without a period. And I can think of some reasons of why both could be good. No dot would give you the freedom to add the period or leave it out if you ...
7
votes
3answers
832 views

Objective-C: Smalltalk-style Messages vs. C-style Functions

When should I use messages versus C-style functions?
6
votes
2answers
2k views

Grails - getting a message value from controller

How can I get a value from message properties outside of GSPs? For instance, the equivalent of <g:message code="some.message"/> but in a controller?
6
votes
5answers
2k views

How can I keep Task Manager from killing my program?

Is there any way to protect my Delphi application from being killed by the Windows task manager (or others like Process Explorer)? I think Windows messages can do that (by doing a hook and ...
6
votes
3answers
3k views

Send a message to a Windows Forms message loop

I have a thread that reads messages from a named pipe. It is a blocking read, which is why it's in its own thread. When this thread reads a message, I want it to notify the Windows Forms message loop ...
6
votes
5answers
1k views

Avoiding instanceof when checking a message type

I have the following situation where a client class executes different behavior based on the type of message it receives. I'm wondering if there is a better way of doing this since I don't like the ...
6
votes
2answers
1k views

How to make Oracle error messages more verbose?

The message that drives me crazy is ORA-01008 - Not all variables bound. Is there a way to know which one of the 42 possible variable names I have misspelled without staring at the monitor till my ...
5
votes
1answer
861 views

How to programmatically choose a context menu item in another app?

The target app is written in Delphi (win32 not .NET) and is closed-source. The action I want to invoke is called Copy, but there is no obvious keyboard shortcut. (Ctrl+Insert does the wrong thing and ...
5
votes
3answers
780 views

Trapping messages in MFC - Whats the difference?

I was just wondering what (if any) the difference was between the following two message traps in MFC for the function, OnSize(..). 1 - Via Message map: BEGIN_MESSAGE_MAP(CClassWnd, CBaseClassWnd) ...
4
votes
2answers
345 views

Status Notification System for asp.net mvc3 Application

I just wonder how to implement notification system for asp.net mvc3 application like basically when user logged in to the system with successfully login page shows message if not error message. i ...
4
votes
2answers
262 views

How does RockMelt send Facebook messages?

Everything I've read says that you can't send messages but in RockMelt you can send your friend a beta invite through Facebook messages. Are they using a preview of the Inbox API? Is there another ...
4
votes
3answers
157 views

Is there any way to incrementally build commit messages in git?

I'm wondering if it is possible to build git commit messages incrementally, documenting what I'm doing as I make code changes: Check out and begin work Enter commit message title (i.e. summary) Make ...
4
votes
4answers
1k views

How to Prevent ProcessMessages in Delphi

The Application.ProcessMessages command is well known and I use it in long processes to ensure my program will not tie up the computer. But I have one fairly quick set of processing, where I am ...
4
votes
3answers
132 views

Extra bytes in .mid files

I'm trying to read information from a .mid file, but I keep seeing extra bytes that don't seem to be part of any midi messages. I'm not sure how to predict/deal with these and it's throwing everything ...
3
votes
1answer
97 views

Disable Messages Upon Loading Package in R

Happy Friday SO, I've not found a good answer anywhere, so I am reaching out to all of you. I have a package in R (ROCR) that I need to load in my R environment. Upon loading the package, a set of ...
3
votes
4answers
97 views

How do I select only the most recent record based on a userid that can be in either of two columns?

I have a messages table that is structured somewhat like this: from | to | date ----------------------------------- 1 | 3 | 2011-09-23 11:51:44 3 | 1 | 2011-09-23 11:56:29 3 | ...
3
votes
2answers
137 views

Play framework: How can i use “conf/messages”-messages in html-files?

How does it work? Simply with &{messages.message1} when the messages file looks like this: message1 = hallo
3
votes
1answer
216 views

Is kohana 3.1 i18n system efficient for long messages?

Should I use __() function for email messages, notifications etc? Aren't 1024 characters long texts just too long for php's array hash keys? If they are, is there a better way to handle long messages ...
3
votes
2answers
381 views

PeekMessage not getting the message?

I've created a custom message type for use in resizing my Window, called WM_NEED_RESIZE. I've defined it in my .h file, and initialized in my .cpp file. I have also registered my WindowProc function ...
3
votes
2answers
453 views

What do these Spring debug messages mean?

I use Spring IoC in my stand-alone Java application. When the application starts it creates a log with start-up info. Some messages I don't understand, please help me to understand them and explain ...
3
votes
2answers
414 views

Capture windows messages generated by an MFC app in plain C++ dll

First of all: Is this even possible? I have a third party dll that interfaces some hardware. It's written in MFC. I received (from the dll vendors) a sample Visual Studio 2010 solution which has only ...
3
votes
3answers
174 views

How to use TryScan in F# properly

I was trying to find an example about how to use TryScan, but haven't found any, could you help me? What I would like to do (quite simplified example): I have a MailboxProcessor that accepts two ...
3
votes
2answers
302 views

Mach port messages in Objective-C

I am trying to use Mach port messages in Objective-C but I cannot find any documentation or working example. Would you have any pointers to documentation or examples?
3
votes
2answers
133 views

.net configurable business error messages

I need to implement some kind of solution such that in our business logic layer when certain conditions are met an error message is returned. That error message should be configurable either in a ...
3
votes
5answers
360 views

Class; Struct; Enum confusion, what is better?

I have 46 rows of information, 2 columns each row ("Code Number", "Description"). These codes are returned to the client dependent upon the success or failure of their initial submission request. I do ...
3
votes
3answers
1k views

MFC resource.h command/message IDs

I'm working on an MFC application, that got pretty messy over years and over different teams of developers. The resource.h file, which contains all command/message mappings grew pretty big over time, ...
3
votes
2answers
913 views

Thread Message Loop Hangs in Delphi

I have a simple Delphi program that I'm working on, in which I am attempting to use threading to separate the functionality of the program from its GUI, and to keep the GUI responsive during more ...
3
votes
1answer
156 views

How provide own Sent Messages in Interface Builder

I cannot find documents about the way, in which Interface Builder determines the Sent Message outlets for the graphical connections between components triggering events and messages of other ...
3
votes
4answers
6k views

WCF Error : Manual addressing is enabled on this factory, so all messages sent must be pre-addressed

First off, I'd like to thank those who have helped me out with this WCF connectivity, as it's fairly new to me. I've got a hosted WCF service that I created a custom factory for, so that this would ...
3
votes
4answers
752 views

How to redirect MFC messages to another object?

In an instance of a class derived from CWnd, is it possible to forward (redirect) all MFC messages to another object, without writing separate handlers and message mappings for each possible message? ...
3
votes
9answers
395 views

How best to pass a message for the user between pages

So the chain of events is: The user submits a form. During the processing of the submission, there is a message generated, such as "Your record was saved." The user is redirected to a new page, say ...
2
votes
5answers
160 views

Message generation in mathematica

In a module I'm writing I have (for the development and testing phases) lots of Print["Messages"]. I have two questions: What is the best practice to print such "debugging" messages? Is there a way ...
2
votes
3answers
127 views

Window receives infinite amount of messages when mouse is hooked

I am writing an application which should draw a circle in place where user clicks a mouse. To achieve that i am hooking the mouse globally using SetWindowHookEx(WH_MOUSE,...) The hooking, and the ...
2
votes
1answer
83 views

Resizing borderless form from different constraints than far edges?

I have a custom form which does not have any type of border. I'm drawing some custom borders of my own instead, which do not extend up to the far edges of the form. Instead, whatever's outside this ...
2
votes
1answer
129 views

Using the Magento built-in messages system in custom controller+action

I am ajaxifying my magento store, and pretty much everything is going swimmingly, except for one thing: Problem: I seem to be unable to retrieve and display the messages block in the responses to ...
2
votes
1answer
84 views

BlackBerry - show info when status bar is pulled down (like 'droid Notification Area)

Thanks to Max Gontar, I can put my notification icon in the status bar on 4.6 and up (http://stackoverflow.com/questions/1465224/blackberry-how-to-use-notification-icon-in-statusbar). But in later ...
2
votes
2answers
136 views

Assigning Buddy window to Spin Control - ResEdit (C++)

How do I assign a buddy window to the Spin Control using ResEdit ? (C++) Also, how do I find out what messages the control sends when the up and down arrows (on the control) are pressed. ResEdit Code: ...
2
votes
1answer
93 views

Is it possible to authorize a Facebook user to send me a private message into my Inbox?

I definitely know that you can't send a message to other users, but is it possible to allow users to send messages to me? Lik something similar to Twitter's direct messaging API, where the user ...
2
votes
5answers
104 views

C: `Turn on debug messages

This is probably a really stupid question, but how do I turn on these debug messages in my code? #ifdef DEBUG_MSG printf("initial state : %d\n", initial_state); #endif Many thanks in advance,
2
votes
1answer
79 views

Implementation of a message service in ASP.NET MVC

I have an infrastructure, bussiness rules and other logic, that I use in a WPF application, in it I have a messaging service that implements an message service interface, this service is register in a ...
2
votes
3answers
104 views

Eclipse: How to limit displayed errors/warnings to currently open files?

I'm just getting started with eclipse and android development. One thing which is driving me crazy in eclipse is the problems panel with error/warning messages. It displays errors and warning from ...
2
votes
1answer
82 views

Four WinAPI test questions

Following is an extraction of a WinAPI test quiz. I've researched quite a bit, but haven't found the answers to these: 1. Which statement, regarding dynamic link libraries (DLL), is WRONG: a) ...
2
votes
1answer
480 views

Get message in Java code ( Spring 3 )

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource" p:basename="messages" /> bean and obviously in my velocity files I can use ...
2
votes
1answer
122 views

Is there an open source java message flow designer or similar tool?

I am looking for an opensource product or some code examples of how I might design either a Java or HTML based GUI to design message flows. One would add nodes/entities to the diagram and then ...

1 2 3 4 5 6