- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
12 Posted Topics
Hi guys, Came across few materials about win azure and wcf services for cloud computing. If anyone working on this platform and technology, can u please share your experience on: i) Performance (comparison to clustering) ii) Manageability (deployment) iii) Scalability (when the server farm expands) Thank you in advance, would …
Hi, As i was experimenting stored procedure's TRY-CATCH with RAISERROR, came across this issue. Would like some opinion on this. Microsoft sites documented as follows: SQL Error 0 - 10: caught in the TRY-Block, i.e. will not reach CATCH-block. SQL Error 11 - 19: caught in CATCH-Block SQL Error 20 …
Hi, There are few ways to this. One of it is by sending IntPtr pointing to COntrol's handle. Here is the code. [B][U][Form1][/U][/B] [CODE] public partial class Form1 : Form { private static IntPtr m_oControlHandle; public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { m_oControlHandle = textBox1.Handle; …
Is it sure, it's not .NET you are talking about? If not so, i am really eager to know too.
Yes, many of them said get at least a degree in Computer Science. Try not to confuse yourself with big word ‘IT’. Trust me, it’s a big word. Just like Biology, Physic or something similar. Survey for a good university and get a basic recognized degree in Computer Science. By …
hi, M'soft sites documented that [CODE]RECEIVE TOP (n) FROM Target[/CODE] should fetch the n number of message from the specified queue. I am having problem with this, and do not know why because not much resource is available pertaining this. Tried finding for an answer on Klaus Aschenbrenner's book, failed. …
Hi, Try-block is the segment for you code to execute safely. This is in-order to eliminate program crush if exception occurs at runtime. The Catch-block is segment to execute in case exception thrown by the runtime environment. Every mature code must have a catch segment to trap the unexpected exception …
Hi, I had some sort of questions like that too when i was at your station. The bad news was, those lecturers who suppose to guide me at that time, was lacking of this knowledge. So what they did was 'reading introduction from some books' and teaching it by 'term' …
Hi just add public keyword at the variable declaration (e.g. public int numberOfA;..etc). This will solve your prob.
Hi, The Canon SDK was written in unmanaged code (OS raw environment). .NET uses application domain to somehow partition the threads into groups. This concept can run fine inside .NET framework. The EDSDK is not in-bound call. Therefore it uses a pointer to hook to the caller. This is cameraPointer …
Hi, Yes, this seems more like a web project. If you choose java, you can use JSP(Presentation), Beans (Middle-tier), any database at your preference. Try to read more on 3-tier application architecture. It will be more like a web inventory system. Any attempt you make, try to envision for future …
Hi, 1. Declare a static variable bool m_bReturnTripIsSelected in the first form. 2. Declare the [CODE]private void Form1_Activated(object sender, System.EventArgs e) { if(m_bReturnTripSelected) { returnTripRbutton.Enabled = true; } }[/CODE] - this will fire once the form is focused - [URL="MSDN Reference"][http://msdn.microsoft.com/en-us/library/system.windows.forms.form.activate(VS.71).aspx][/URL] 3. On Form2_FormClosing call the static property for m_bReturnTripIsActive …
The End.
everhett.raman