BigPaul's Q&A profile
Visual Studio Express Editions SQL Server Express
I cannot install the latest release. It says I have prior releases still installed. The uninstall tool also says I have installed releases, but it will not uninstall them either, it gets errors and fails. None of the products show up on the add/remove list as I ran the uninstall on all of them. How do I correct the problem, why doesn't the tool remove them If it can detect them, you would expect it could remove all the components it finds one way or the other. I am having a similar problem. The error message I get when I try to use the auto uninstall programme is: The action is ...Show All
Visual Studio Tools for Office Can I save information inside a Word Document
Is it posible to save information in a Word Document, in a a way the user can’t see it or edit it, but i can read it or modify it using code Thanks Hi jalekz, If you want to do it using VSTO framework, you could use the Data Island to cache your information. You will find a good description here: Caching Data http://msdn2.microsoft.com/en-us/library/75akte27(VS.80).aspx This would be an example on how to have a field that caches a name in the document's data island: public partial class ThisDocument { [Cached()] public string name; private void ThisDocum ...Show All
Visual C# A lot of radiobutton
Hi, I have a webpage with 15 questions and for each question I have 5 radiobutton, and what I want to know is how can I get the checked one from each group dinamically... Thanks I'm using radio button group what I need is to make a for each for each group of the 15 groups that I have and get the checked radio button for each group..(this is the dinamic) Thanks ...Show All
Visual Studio Express Editions GDI+ Mapping Question
I would like to map world coordinates to device coordinates, but I'm a little unsure on how to do it. Suppose I have world extents of (100,100 - 1000,1000) and device extents of (20,20 - 300,300). Page extents are in pixels and identical to device extents. Can someone give me a clue on how to do this. Thanks hi, i'm not sure what do you mean by that , what i know about this is that you don't have control on device coordinate http://www.bobpowell.net/coordinatesystems.htm do you mean scrolling best regards ...Show All
Game Technologies: DirectX, XNA, XACT, etc. DirectX Vs. OpenGL
Im just getting into computer games programming and have become quite familiar with C++ in the last month. However having done some research these 2 names keep cropping up DirectX and OpenGL Can anyone tell me what these two do and which is the best to start learning. Are they both linked with C++ or have i been wasting my time learning c++. Thanks Craig I have just come across a Wrapper for OpenGL written for .Net 2.0 only, here is the post on Inner Realm . There are several Versions available. ...Show All
Visual C++ C and C++, how do they differ from each other?
Hi there, One of my friends is NOW asking me to explain the difference between C and C++. Let's assume that we have a code below; #include <stdio.h> int main() { printf("Hello World!"); int i; int j; int k; return 0; } This code can be built as C++. However, it cannot be done so as C. I tried it with Visual C++ 2005 Express Edition. This tool is very famous for its most advanced compiler. Is this true Does the tool support the C99 spec If not, plz let me know the difference between C ...Show All
Visual C++ import 3rd-party DLL
I know that there are many threads about DLLs already, but they all cover the case that you want to import a dll you created yourself first. I'm trying to get the sqlite3.dll working with my programm. This is my code: #define sQliteDLL __declspec( dllimport ) int feedBack; sQliteDLL typedef struct sqlite3 sqlite3; sQliteDLL int sqlite3_open(const char* filename, sqlite3 **ppDb); sqlite3 *db; feedBack = sqlite3_open ("test.db",&db); What I understood so far: I need to create a prototyp of my function etc. with the dllimport-thing to tell the linker where to look for the code of those functions. After that I can use the function ...Show All
Visual Basic TcpListener Object
I am writing an application that uses the TcpListener object from the System.Net.Sockets namespace and had no trouble in .NET 1.1, but am getting a message now complaining that my constructor has been depreciated. Here's a code snippet: Try m_Listener = New TcpListener(5000) m_Listener.Start() Do Dim x As New Cli ...Show All
Visual C# redirect IE frames
hello, I'm creating a C# dll that runs in IE. When the code reaches a certain point, I want the left frame (the code is running in the right frame) to get redirected, but I'm not quite sure what is needed for it. I've seen some stuff of creating new web browsers, but in this case, one already exists. How can this be done thanks for any help ...Show All
Visual C++ Where is <inttypes.h>
I am working through the book C Primer Plus by Stephen Prata. He has placed an exercise in Chapter 3 that deals with portable types. I am trying to use <inttypes.h> however, the compiler says that it is not able to find the header. Below is the output I received. Does anyone know where I could find this header for Visual Studio 1>------ Build started: Project: altnames, Configuration: Debug Win32 ------ 1>Compiling... 1>altnames.cpp 1>.\altnames.cpp(4) : fatal error C1083: Cannot open include file: 'inttypes.h': No such file or directory 1>Build log was saved at "file://c:\Documents and Sett ...Show All
.NET Development WebClient.DownloadData times out
I have a C# program (.NET v2) that reads a web page based on information I send it. I do this several thousand times. Sometime shortly after I start (maybe 10 minutes) I get a message that says "The operation has timed out". I am assuming this is from the server side. My question is: what are my options Can I just catch the error and continue with the next request Are there settings I can use to prevent this This sounds like it might be a client side timeout. What is the exact exception, asscociated message and stack trace Are you using HttpWebRequest or WebClient Try upping the ReadWriteT ...Show All
Visual Studio Express Editions VC++ noobie questions
hi. I have just downloaded VC++ Express edition. I have earlyer some experience with good'ol qbasic,been digging around in assembler on the amiga, and and now recently working with Flash and actionscirpt. good fun, but... But now i want to learn VC++ Where should i start I have no C++ experience, So what i really need is a hello world start, and a good free online book. soo... can any one help me out Cheers! Bjorn erik Try the books recommended at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=107484&SiteID=1 . Also, use the online help at http://msdn.mic ...Show All
Windows Forms OnKeyUp event doesn't fire
hey folks, this is strange. I need to know when a pressed Crtl key is released, I used in my controls the added event handler MyControl_KeyUp(...), MyControl is sitting on the main form. It's partially kind of a flexgrid clone, and the Ctrl enables MultiSelect - since i clicked and dragged with the mouse over the thing, it should be on focus, I think.& ...Show All
Visual Basic Midi file to binary file
Good day How do I save the contents of a midi file to a property bag and then read the contents of the pb and save it to a midi file. No success with - Dim FF as long, vartemp as variant Dim ByteArr() as byte FF= freefile Open "c:\town.mid" For Binary As FF Get FF, , vartemp Close FF bytearr= vartemp -------------------------- vartemp shows empty. Appreciate any feed back Jdsouza Public Class Form1 Dim Data As Byte () Private Sub ReadFile() Dim sFile As String = "c:\boot.ini" ...Show All
Smart Device Development camera guidline
Will anyone is able to guid me about camera developement I have two questions As WM5.0 support the camera api's but if i have the camera full specifications including driver and camera device api's then which way is easier to implement camera app 1. Using WM 5.0 api's 2. Device dependent api's Please give me the detail answer. I am new for WM thanks in advace Standard WM 5.0 API is the best option as it would work on any compatible device and any camera. As to complexity, it should be roughly the same for both. ...Show All
