MAdWizard's Q&A profile
Visual C++ error LNK2019: unresolved external symbol
Hello, I am very new to Visual Studio, so I apologize if the answer to this question is obvious. I am using Visual C++ 2005 Express Edition and have downloaded Platform SDK. When I compile, I get the errors given at the end. I don't have any external .lib files that need to be included (at least I don't think so) In my linker settings I have Console (/SUBSYSTEM:CONSOLE). Thank you. 1>------ Build started: Project: CImg_demo, ...Show All
.NET Development Moving from CDO to System.net.mail, cdoanonymous?
In CDO I could use: 'Type of authentication, NONE, Basic (Base64 encoded), NTLM objMessage.Configuration.Fields.Item( "http://schemas.microsoft.com/cdo/configuration/smtpauthenticate" ) = cdoAnonymous How is this done in .net 2.0 I have converted all my code over, except this line which is an essential property of the smtp client to send through our smtp server. Thanks. Current code that works ...Show All
Windows Forms calling a function every 3 minutes
Hi there, I would like to call a function every 3 minutes after clicking on a start button. What would be the best way to implement this thanks a lot Cheers Chris Hi, Here is an introductory article about Threading and Timer: <a href="ht ...Show All
Visual Studio Team System Source code control with documentation?
Hi all, Can someone tell me if our UML documentation for versions of source code can also be controled and stored within TFS Thanks To be totally clear, TFS does not care what kinds of files you store in source control. The only differences I can think of: old file versions are stored in SQL as diffs. binary file diffs are computed with a different algorithm. by default, files with extensions kno ...Show All
Windows Forms httpContext not available in windows forms
I use a function in a webservice who returns the IP address of the remote host by using context.request.userhostaddress. If I call it from a web page, ok there is no problem, but i need to invoke it from a windows form application, And i&n ...Show All
Windows Forms 5 errors that I dont really get why they there...
Hey, in my spell check code I got 5 error and I dont get them, I downloaded a "DLL" and I added the stuff in just like it said to, and then I added in the code, so here is the code that has errors in it, I am gunna say the line and then next to it will be the code, the errors are underlined and bold: CODE: LINE 140: Private Me .SpellChecker.MisspelledWord += New NetSpell.SpellChecker.Spelling.MisspelledWordEventHandler(Me.S ...Show All
Software Development for Windows Vista Whether "UnloadOnIdle" available in WF 2.2 Beta Version
Hi, I need to persist the state information into SQL Server using default sqlpersistenceservice. I am using WF 2.2 Beta. When I including this service in web.config < configSections > < section name = " WorkflowRuntime " type = " System.Workflow.Runtime.Configuration.WorkflowRuntimeSection, System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 " /> < ...Show All
SQL Server BUG - SSMS 9.00.1399.00 (final release)
Hi... because this bug doesn't solve in final release http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=b6fb8745-368c-4638-8994-fb539c844c7f Afet install SQL Server Management Studio (9.00.1399.00) I get the same bug.... this is very very critical for administration. This is in Books Online: " Login is locked out Select to lock out a SQL Server login that connects using SQL Server authentication. Thi ...Show All
.NET Development Help: new to Data access stuff
hi all, i am completely new to working in data base access using c# and visual studio 2005. i do not have db yet. where can i get beginners tutorial on creating, and accessing data base in VS2005 and c# will really appreciate. rnv Try: http://msdn.microsoft.com/data/DataFundamentals/default.aspx http://msdn2.microsoft.com/en-us/library/ms186197.aspx http://msdn.microsoft.com/data/dataaccess/whidbey/default.aspx ...Show All
Visual C++ float to bool, bool to float conversion
Good day to you, Is it always guaranteed that when converting : float to bool 0.0f is false 1.0f is true bool to float false is 0.0f true is 1.0f negating the bool !false is 1.0f !true is 0.0f negating the float !1.0f is false !0.0f is true Thank you much, Dennis It's definately always the case that anything this is zero equates to false, and vice versa ( not sure if a float gets rounded for this, but 1.0 is ...Show All
Visual Studio 2008 (Pre-release) Animation: Width . I don’t know how to do this
Hi, I want to do something like this <DoubleAnimation Storyboard.TargetName="PART_Header" Storyboard.TargetProperty="(ContentPresenter.Width)" From="200" To="100" Duration="0:0:2" /> but I want to replace the final width = 100 by width = ContentPresenter.Width. My aim is to get that the element recovers its initial width, but I don’t ...Show All
Windows Forms Coloring Datagrid rows based on value inside of dataset
Hi I am developing a windows application that connects to a sql database. I have a datagrid that has a datasource of a dataset. I am trying to color the rows of the datagrid based on a value inside of the dataset. I have ...Show All
Visual Studio Express Editions Error Message
Hello, Whenever I try to build an application and compile and run it, I always get the same error message. "The application failed to initialize correctly. (0xc0000005)" This also occurs on other Visual Studio 2005 Express Editions. I re-installed windows and that did not fix the problem. Does anyone have any ideas that could help Thank you. Been are you telling us that you can take an empty windo ...Show All
.NET Development LogonUser Failure error 1314
using System.Runtime.InteropServices; using System.Security.Permissions; using System.Security.Principal; using System.DirectoryServices; private const int LOGON32_LOGON_INTERACTIVE = 2; private const int LOGON32_PROVIDER_DEFAULT = 0; [DllImport("advapi32.dll", CharSet=CharSet.Auto, SetLastError = true)] public static extern bool LogonUser(string lpszUserName, string lpszDomain, string lpszPas ...Show All
Windows Forms Starting an Application
I would like some tips and tricks about starting an application that needs a splash screen because of the size of the main form. Many of the things that I have tried gives me too much flicker or loads chunk by chunk. Is there&n ...Show All
