Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K

12 Posted Topics

Member Avatar for everhett.raman

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 …

Member Avatar for everhett.raman
0
249
Member Avatar for everhett.raman

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 …

Member Avatar for fx1250s
0
222
Member Avatar for davieJohnson

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; …

Member Avatar for Mitja Bonca
0
163
Member Avatar for massivefermion

Is it sure, it's not .NET you are talking about? If not so, i am really eager to know too.

Member Avatar for rbrt13
0
400
Member Avatar for Dewise

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 …

Member Avatar for jameskodo85
0
132
Member Avatar for everhett.raman

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. …

Member Avatar for everhett.raman
0
131
Member Avatar for james6754

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 …

Member Avatar for everhett.raman
0
212
Member Avatar for islam-morad

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' …

Member Avatar for islam-morad
0
142
Member Avatar for james6754

Hi just add public keyword at the variable declaration (e.g. public int numberOfA;..etc). This will solve your prob.

Member Avatar for jbrock31
0
212
Member Avatar for fernandomier

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 …

Member Avatar for everhett.raman
0
435
Member Avatar for MarounMaroun

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 …

Member Avatar for everhett.raman
0
132
Member Avatar for amr_asd5

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 …

Member Avatar for Mitja Bonca
0
111

The End.