Claude Vernier's Q&A profile
Windows Forms When's Terrarium going to work?
By that i mean - being able to add your own creatures into the game. Or has Terrarium died out now I only discovered this last week and find it fascinating! Built my first test creature and disappointed that I cant see it being eaten by Naka + Mari. Does the server get reset every now and again Microsoft's Terrarium server hasn't functioned correctly for, hmmm, it's been so long I can't remember. I'm runni ...Show All
Smart Device Development pcmcia / compact flash interface
Hi All, I'm trying to find example VC++ code to access the pcmcia/CF interface on a pocket pc. I've developed an add on card for analogue sampling, but now need to access the card. I would like to access the card in memory mode or IO mode (not ATA mode as per a flash disk) I've had a good look around but can't finding anything. Does anyone know where I can find this information. I'm using embedded VC++ v4.0 Thanks, Stephen ...Show All
SQL Server SQL Express and Bulk Insert
Does SQL Express support bulk insert If not is there any suggestions of alternative way to get data from a text file to SQL Express in a manner that can be automated Thanks Tom ...Show All
Visual Studio VSWebSite.AddFromTemplate
Does anyone have working sample code for VSWebSite.AddFromTemplate Bryan, I am not sure what problem you are having but here is a simple Macro that adds a WebUserControl to a WebSite. Also keep a watch on http://blogs.msdn.com/chetanc where I plan to post information such as this in the future. Sub VsWebSiteAddFromTmpl() Dim vsWebSite As VsWebSite.VSWebSite Dim proj As Project Dim tmpl As String proj = DTE ...Show All
Visual Studio Team System script fails after new version of software pushed
I am currently trying to create tests to test microsofts new CRM application. I have recorded numerous web tests, but they will stop working after a change is made to the application. As far as I can tell it is linked to an import of the configuration from another server. When the script does a form post of the information submitted in the test, it gets back an error stating that the form has expired. I can re-record the ...Show All
SQL Server compress spaces
i have this textboxes that have data in it and its possible that the textbox has no data. so what i did was just hide it but the spaces are still visible. the size of my report is just 5 X 11, it is vertical in form.so how can i compress the spaces. pls help thanks! Hi Maila, one gud approach is to make the widht of the textbox to 0 and set the can grow property to true. so that if the textbox contains data ...Show All
Visual C++ Standard Conversions
This code in Visual Studio.NET 2005: int x(1.5); //Warning: truncation and possible loss of data int y(x); //OK int z = int (1.5); //OK Why is int(1.5) OK I thought the int(1.5) was the "constructor form" for initializing variables so that int x(1.5) and int z = int(1.5) are equivalent. That is, I should get warnings on both lines of code because in both cases an int is built from 1.5, which is al ...Show All
Visual Basic Build Complete Notification Sounds - another workaround
I just upgraded to Visual Studio 2005 from VS6.0 and I cannot find any documentation for Visual Studio sounds schemes. In VS6.0 I could have seperate sounds for "BuildComplete", "BuildError", and "BuildWarning". In Visual Studio I can only create a sound for VS_BreakpointHit Are any of the others available The three I mentioned in my post BuildComplete, BuildWarrning, and BuildError.&nbs ...Show All
Visual Studio Team System Soap Exeption
Im having this same problem. This is the 5th format/install I have had to go through. The 4th one worked great exept I had a id10t error w/ domain controlers later that night forcing my server off the domain. Now I find myself at errors once again. I followed the instructions down to the very last detail (most of the problems people report is because they didn't even touch the directions). My VS on the client connects great. When I create a new ...Show All
Visual C++ C4533 warning, "initialization skipped by goto"
Is this warning buggy in MSVC 7.1 or is it just a stupid warning In the example given here: http://msdn2.microsoft.com/library/f7687yks.aspx It makes sense because the condition, (1) will always be true and the goto will always skip the initialization. But the following code gives me the same C4533 warning and it makes absolutely no sense why it should. #include <iostream> using namespace std; struct TOILET { &n ...Show All
Visual Studio Team System Error: The underlying connection was closed.......
using vs2005 and TeamSystem. when checking in my ASP.Net project to our development server i always get the following error:- "The underlying connection was closed: A connection that was expected to be kept alive was closed by the server" the check in fails. if i then attempt to check in again, it checks in fine without any errors. what would be causing this problem its not just me experiencing it either, its happening to all our developers ...Show All
Smart Device Development Pocket PC/Webservices: Unable to connect to the remote server
I have developed a Pocket PC 2003 app in Visual Studio .NET and am getting an unusual problem i can't get to the bottom of. My VB.NET Pocket PC App tries to call a simple web method on my webservice from the device using the webserver's IP or Machine name and receives the error " Unable to connect to the remote server". Yet if i point the device's IE browser to the location of the webservice asmx file (i.e. http://192.168.1 ...Show All
Visual C# Network
Hi, I am start learning to use the System.Net functions build in 2.0. Now I have a simple task I want to complete, I want to be able to send information between different computers in my LAN. More exactly I want to send strings between the computers: - type - name - message What is the best way to do this The best thing to do is to working with a server-computer, I think, because I'm working with more than 4 computers. Pleas ...Show All
Windows Forms Show a txt file in a Textbox
How can I show a text file in a textbox I mean for example if I have a textbox in my program and I have a txt file in my computer and in the txt file writes "Hello" . I want a person to see "Hello" in my program's textbox when he/she opens my program. Like this: private void Hello() { &n ...Show All
SQL Server Getting error in Execute SQL Task
Hi, I am trying to execute a Stored Procedure using an Execute SQL Task. my stored proc contains various input paramaters. And the datatype for some of the paramaters are numeric (decimal). So when I am passing values to those paramaters using Exec SQL Task, I have used variables of type Object as it is not working properly even if I declare the variable type as "double". So I have used Object datatype for those variables and it wo ...Show All
