Tagged Questions

0
votes
1answer
246 views

Lotus Notes email as an attachment to another email

HI all, This is in Notes 8.5 environment . I just wanted to know how to attach an email to another email as real attachment not a "Document Link". I intended to attach an email …
23
votes
5answers
477 views

GCC’s assembly output of an empty program on x86, win32

I write empty programs to annoy the hell out of stackoverflow coders, NOT. I am just exploring the gnu toolchain. Now the following might be too deep for me, but to continuie the …
0
votes
2answers
38 views

Is this dependency injection in ActionScript 3?

Hi. I have a Main.fla (controlled by Main.as) that has a child named Slide (a Movieclip controlled by another class, Slide.as). Sometimes, my Slide object have to call the method …
0
votes
4answers
988 views

How to create virtual column using MySQL SELECT ?

Hi, If I do SELECT a AS b and b is not a column in the table, would query create the "virtual" column? in fact, I need to incorporate some virtual column into the query and proce …
3
votes
6answers
505 views

Threads in x86 assembler (using the GNU assember: as)

Whilst learning the "assembler language" (in linux on a x86 architecture using the GNU as assembler), one of the aha moments was the possibility of using system calls. These system …
0
votes
3answers
158 views

x86 Assembly, misleading Error

I am trying to learn assembly, and have a program in AT&T syntax, for use with GNU AS Which I believe should work. I receive this error with GDB: Program received signal SIGSE …
0
votes
2answers
38 views

XML node value in the AS Script Block

Hello, okay I'm hoping this isn't to lame of question but I have honestly given up on searching the net for any clear example of how to do this. Here is the end result goal: I sim …
4
votes
9answers
173 views

Should I use (ObjectType) or ‘as ObjectType’ when casting in c#? [closed]

Possible Duplicate: Casting: (NewType) vs. Object as NewType Say for example I have a class called MyObjectType and I want to convert the sender parameter of an event to t …
0
votes
5answers
880 views

cannot convert type ‘string’ to ‘int?’ via a reference conversion, boxing conversion, unboxing conversion, wrapping conversion or null type conversion

Hi, I'm going to try to make me clearer. Why does C# accept the following: object o = "hello"; int? i = o as int?; if (i == null) { // o was not a boxed int } else { / …
0
votes
2answers
246 views

Developing Web services applications from existing WSDL files

Hello, I have done this on Websphere (re: title of this topic) using wsdl2java for generating wsdl to java mapping xml file. My endpoint is a generic stateless EJB. The code in EJB …