tanha's Q&A profile
Smart Device Development Debug PB compiled with EVC
Hi, mr. All! Can anybody tell me if it is possible to compile a binary with a Windows CE 5.0 Platform builder's compiler, but debug this binary with EVC Which switches should I set to make it possible Thank you. Unhappily that isn't supported. CE5.0 uses a newer set of compilers and linker that generates debug information in a format that isn't supported by eVC. Note, PB5.0 Can debug eVC generated debug information. VS2005 ...Show All
Visual Basic Word Automation Error 462
I am having an interesting error. I am using VB to Automate a Word document, and having some trouble. If the user closes the Word Window opend by the program, on their own, then uses the process which opens it again, I get an error: ErrorNumber: 462 Error Message: The remote server machine does not exist or is unavailable Originally I got this error anytime I manipulated the word document object, so I reinitialized the Word Application Ob ...Show All
.NET Development Serializing delegates: MethodInfo
When serializing a delegate, the delegate writes out a RuntimeMethodInfo for the Delegate.Method member. Unfortunately, even though RuntimeMethodInfo is serlialized, it cannot be deserialized because it is missing the deserialization constructor . Obviously, the runtime formatters are deserializing delegates somehow, am I missing how to deserialize a delgate in the documentation or is that functionality only available internally Thanks, Ray ...Show All
Visual C# Conversion of Double byte to single byte
With code snippets, can anyone tell me how to convert double-byte character to single-byte. Do we have any special method/function to do in C#. thanks Do you mean Unicode and ASCII http://msdn2.microsoft.com/en-us/library/system.text.asciiencoding(VS.80).aspx ...Show All
.NET Development Deleting row Problem
Hi, i am trying to delete a row using a simple sql command: DELETE FROM User WHERE userid = 'aaa' but i get the following errof: The data types text and varchar are incompatible in the equal to operator. in the sql server express i have specified the column 'userid' as 'text'. is my sql statement not correct please help. regards, rnv thanks a lot.. it is now clear i need background info on sql db. can you recomm ...Show All
Visual Basic Partial evaluation of logical expressions?
Many languages include a short-circuit in logical expression evaluation where, once the result is known, the rest of the expression is not evaluated. This is useful if you must check for a null value before using it. For example, if ( (a<>null) and ( (a+b)>5) ) then... Don't want to use a unless it is not null. Is there any way to turn this behaviour on in VB.NET Right now I'm using nested tests which leads to some ug ...Show All
.NET Development Client found response content type of 'text/html; charset=UTF-8', but expected 'text/xml'.
my company has a soap webservice exposed.... a python webservice... my duty is to have my application consume the exposed service. c# is unable use the service whe i try to set the reference to the service. Client found response content type of 'text/html; charset=UTF-8', but expected 'text/xml'. that's the error that am getting ... any one knows how to consume a pythong web service Thanks guys girls Hi Gary ...Show All
Visual Studio Express Editions Data access problems
Hi all ~ just tried to build my first winforms app with data access. Using the Datasource Configuration Wizard, I selected MDFs, browsed for a MDF and tested the connection - so far so good. I selected one of the tables from it, clicked on it in the Datasources tab and dragged it over onto my form where it created all the necessary components for me (bindingsource, tableadapter, dataset & bindingnavigator) - still all looked really good. I r ...Show All
Windows Forms .
I am interested in establishing a set of coding and naming conventions for my Visual Basic .NET projects. At the moment I am focusing on naming conventions for variables. The "Naming Guidelines" under "Design Guidelines for Class Library Developers& ...Show All
Visual Basic C# or VB ?
other than familiar syntax is there any reason to use VB instead of C# is the difference only syntax The biggest problem comes from trying to recognize these characters from the comport. ...Show All
Software Development for Windows Vista Mail to James Conrad
Respected Sir, I have a problem with the example code for ASP.net Workflow example which was given in the Windows Workflow offcial site private void StartWorkflow() { // Define the parametes for the Dictionary < string , object > parameters = new Dictionary < string , object >(); parameters.Add( "FirstName" , txtFirstName.Text); parameters.Add( "LastName" , txtLastName.Text); WorkflowRuntime workfl ...Show All
Visual C++ WinSXS - what's the right way to go ?
I have a C# winforms app, but it uses a C++ dll for some image processing stuff. As a result, it needs the C runtime dlls for VC8. I know I need to put the dlls and some other stuff in the WinSXS folders, I'm just wondering if there's any recommended way to do this, rather than just copy them out of my folder into the installer, and back in the same location If that's all I have to do, it seems messy to me. ...Show All
Visual FoxPro please interprete this error
I opened up VFP9err.log file and found a few messages. They are infrequent, I get them about twice a month. They are all the same. What does it mean I think it talks about an OLEdrag. What kind of drag is it Could you explain in detail. Many thanks. Fatal error: Exception code=C0000005 @ 01/11/06 03:21:54 PM. Error log file: C:\Program Files\Microsoft Visual FoxPro 9\vfp9err.log Called from - toolbox.o_1ph0wtk58.otoolcontainer.o_1ph0wtk8t.cmd ...Show All
Visual Studio Team System Error publishing tests results...
Hi, I am trying to publish a unit test result and it gives me error: "Server was unable to process request. ---> Method failed with unexpected error code 53. " I am using TFSB3Refresh. My client machine and TFS are on separate domain, and the credentials I use to connect to TFS have full authorization (Project Admin, TFS Admin, Windows Admin) on TFS. In the "Publish Test Results" window, the owner of the test run ...Show All
Visual Studio 2008 (Pre-release) drag a shape
Hi can anybody know how to solve this problem here i'm trying to creating two rectangles in canvas then how can I drag one rectangle and drop it into another. I want acknowledgment when it drop overs the second rectangle. can anybody give me a simple code to do this problem Thanx-Nagu take a look at blogs.msdn.com/marcelolr http://blogs.msdn.com/llobo/archive/2006/04/11/573560.aspx ...Show All
