What kind of technique does Google use? It must be custom of course, but I heard they used VML or SVG? What would you think be the best method to implement a custom spreadsheet control ?
Revant Jain
Posts
-
Spreadsheet Control -
Spreadsheet ControlHi Is there a spreadsheet control available in ASP.NET? Thanks
-
General C# QuestionsYeah. Was just checking.
-
General C# QuestionsHello, I have a simple question. Suppose you have a class X. Now you have a Class Y, which derives from Class X. Now in Class Y can I create a member which is a object of type X, let the object name be ob. Now Suppose Class X has a public member int a, would this be a valid statement? [Object of type Y].ob.a = 10 Thanks
-
Question about delegatesHello I had a question about named delegates. Now from my understanding named delegates can only hold references of a method that matches the signature of the delegate. I have a piece of code which is contrary to this statement. Using System; delegate int CountIt(int end); class varCapture{ static CountIt counter() { int sum = 0; CountIt ctObj = delegate(int end) { for( int i = 0; i <= end; i++ ) { Console.WriteLine(i); sum += i; } return sum; }; return ctObj; } public static void Main() { CountIt count = counter(); int result; result = count(3); } Now the delegate of type CountIt must refer to a method that takes int as a parameter and returns int as a parameter. CountIt count = counter(); In the following line the delegate count is pointing to the method with no parameters or return type. So I wanted to understand how is it possible? Is this assignment possible because the counter() is returning a object of type CountIt(same as that of the delegate)? If so when CountIt count = counter(); is executed it calls counter() and then just initializes the CountIt object an return it, does it actually go into the anonymous method block code? If not why? Thanks Revant Jain
-
Instructor Led Training Online, Possible ?thanks
-
Instructor Led Training Online, Possible ?which course did you take and can you tell the price ? thanks
-
Instructor Led Training Online, Possible ?Hello well, I checked elluminate does have tutoring services but it is for maths and I think they have a writing center. I'm talking about programming classes. Most of the other sites on yahoo directory are providing online tutorials rather than personalized instructor led training. But thanks for links.
-
Instructor Led Training Online, Possible ?Hello, I was just going through Google and found bunch of IT companies that provided training for various programming languages(C#, PHP, C++, etc.) That got me thinking would it be actually possible to provide Instructor Led Training online? I think with the right experienced instructors, good course material, system of testing and appropriate technology such a service could be possible and much more convenient. What do you guys think ?
-
Capturing Messages ApplicationHello, I am new to Win32API programming, Now is there a program that is available that will hook onto my program and basically tell me what messages are going into the message queue. It does not have to tell me all the messages but basic ones like WM_PAINT, WM_MOUSEMOVE, WM_LBUTTONDOWN, WM_LBUTTONUP, etc. Thanks
-
Video For Windows APIHello, I was looking at the Video For Windows API. Now I saw the VideoNet tutorial(Gnereral C++ -> Internet -> Peer to Peer) for Video Conferencing. Now to actaully start capturing video frames we use capCaptureSequenceNoFile(m_capwnd)Funtion where m_cpwnd is the driver name for the Webcam. Now I wanted to know what would be the driver name if I wanted to capture my desktop or more importantly to capture a paticular window? Thanks in advance
-
Simple QuestionHello, I have written a program in c++.Now I want to make that program a part of a c# program. So to integrate the programs would I have to conver the unmanged c++ code to managed c++/CLI ? Thanks in advance
-
C# and C++ IntegrationHi, I wanted to ask a very simple question. Okay I am reading this article on video conferencing(http://www.codeproject.com/internet/videonet.asp[^]), I was wondering is there anyway I could integrate this into like a C# container. I am creating a eLearning system in C#, but I am forced to use C++ for video conferencing since the encoder has not been ported from C++ to C#. So is it possible for me to create the eLearning system in C# and just add video conferencing facility via c++. Thanks
-
Book RecommendationHello, I wanted to start learning WIN32API. Now before that could anyone pls recommend me a good C book. I am familiar with basics of C. If I read a C++ book, would that make a difference? Thank you
-
Actionscript & C#Hello, Is it possible to write action script in C#. Actually I want to stream video using Flash Communication Server. Now I want to stream video to another c# application on a different computer or to the web. Sorry if I wasn't clear. Please if someone could help me, it would be greatly appreciated. Thanks.
-
Video ConferencingHello, I am in the middle of a eLearning System project. Now I want to initiate a Video Conferencing system between 2 computers. What is the most efficient way of achieving this. I was looking at few options. Should I use DirectX OR GDI+? Can I use Flash to do the same? Thanks
-
Identity Theft Protection IdeaHello I want to know what language would be best to read the data that comes into a internet browser and a language that has strong pattern matching features. Any help wold be apprecaited. Basically supose a person goes to a site that is a replica of an actual site, the site asks for his personal information, I want to show a alert. So I need to read the data on the site, use my pattern matching algorithm so I can say if it is fake or not. How can I do it? Thanks
-
Online training/learning ideahello I am interested in creating this eLearning system where people can learn various languages such as PHP, ASP .NET, etc. as well as about network security and various operating systems. It will be just like normal training institutes but much cheaper, less than half. But at the same time it wont be like a normal online training program which is the computer narrating to you. There will be a real person teaching you the language via webcam, with other interactive features. You would have flexability to learn around your schedule rather than spend 3-4 days away from your work in a training institute. Would people be interested in such a service? Any feedback would be helpful. Thanks Revant Jain