Software Development Network Logo
  • IE Development
  • Visual C++
  • Visual C#
  • Visual Basic
  • Visual FoxPro
  • Visual Studio
  • Windows Forms
  • Game Technologies
  • VS Team System
  • SQL Server
  • Audio and Video
  • Smart Devicet
  • SharePoint Products
  • Microsoft ISV
  • Windows Vista

Software Development Network >> Le Saint's Q&A profile

Le Saint

Member List

James. L.
mdschwarz
Fergnab
sudheer_316
SOTN
Asigwelo
CanadianSprings
h goldstand
Jough
Jason Zhang
ClaudiaHelpOnVSTO
anutosh
mrmckeb
fripper
Jimmy Q
keithy02
Sioln
LaoZeng
Nitesh Ambastha
Kjetil Tveit
Only Title

Le Saint's Q&A profile

  • .NET Development Is there a tool for sending SOAP?

    Hi Forum I really like the SOAP trace utility in the SOAP tool kit. It is great I can see both the SOAP request and the response. I'm missing one feature in the SOAP trace utility. I would like to be able to send a request manually. I could live with just a textbox where I could put in SOAP and press a send button and see the response. Does anyone know a tool like that I believe it would help me faster understand versioning and XML deserialization issues. Hi, there are some good tools here: http://www.gotdotnet.com/team/tools/web_svc/default.aspx . Including WebServiceStudio which lets you send test requests based on the WSDL (it also has an open text box for filling in the request). ...Show All

  • Visual C# Exclamation Icon cursor in IDE

    Hi, Anyone know why, when I load my c# project into VS2005, my cursor flashes as a exclamation icon (yellow triangle with black exclamation mark) This is very fast and may (or may not) do it every time. I can't see any obvious warning messages anywhere, everything appears to work. It's a real "did I just see that " thing - it's that fast, but it does happen quite often. Someone, somewhere, coded it to do that. It probably took some time to do. Shame it's not at all apparent why ! Ross, Do you have your cursors mapped in a custom way I don't know of any VS component that will show a colored cursor like the one you describe. Thanks, Anson ...Show All

  • Visual C++ Creating XLS (Excel files) without .Net framework or excel on the box

    I need to creat XLS files with fonting and formating without .Net framework or even excel on the machine that will eventually be running my application. My company already faces resistance to our applications being loaded on clients machines. It would be impossible to tell our clients they need to install the appropriate framework on all of their users desktops. Does anyone know of an API/DLL available or can point me to information needed to write to the format I have already looked at "Automation". Thanks Ray The scope of this forum ...Show All

  • .NET Development Whats up with the EventLog class?

    I am trying to iterate through the EventLog, here is an example: EventLog appLog = new EventLog("Application"); foreach(EventLogEntry entry in appLog.Entries) { } First error I get is that no overloaded EventLog type accepts 1 string parameter. So I try all of the different overloaded constructors (stringName), (stringName, machineName), (stringName, machineName, sourceName), but all of them give me the same error. So I create the class without using an overloaded constructor, but I still get this error: EventLog does not contain a definition for "Entries". It is documented, it is in intellisense. I have tried it on several computers with the same outcome. What am I missing Have you got another class is ...Show All

  • Visual C++ Compiler bug?

    // Compiler Bug Example.cpp -- produces incorrect output in Visual Studio 2003 and 2005 for me // clay.s.douglass_at_intel com // #include <iostream> using namespace std; #include <conio.h> class VAddr { public : unsigned structure:5; unsigned offset:29; }; typedef union { struct { unsigned cmd:2; // 0 = write, 1 = read, 2-3 reserved unsigned reqId:5; unsigned lenCode:2; // 1 = 8 bytes, 2 = 16 bytes, 3 = 32 bytes, 0 = reserved; VAddr va; }; unsigned long long ll; } MemCmd; typedef struct { unsigned reqId:5; unsigned long long data; } MemData; int main() { //int i=0; MemCmd writeCmd = {1,2,3, ...Show All

  • .NET Development Err: Format of the initialization string does not conform to specification starting at index 0.

    The Error Stack is: System.ArgumentException: Format of the initialization string does not conform to specification starting at index 0. at System.Data.Common.DbConnectionOptions.GetKeyValuePair(String connectionString, Int32 currentPosition, StringBuilder buffer, Boolean useOdbcRules, String& keyname, String& keyvalue) at System.Data.Common.DbConnectionOptions.ParseInternal(Hashtable parsetable, String connectionString, Boolean buildChain, Hashtable synonyms, Boolean firstKey) at System.Data.Common.DbConnectionOptions..ctor(String connectionString, Hashtable synonyms, Boolean useOdbcRules) at System.Data.SqlClient.SqlConnectionString..ctor(String connectionString) at System.Data.SqlClient.SqlConnectionFactory.CreateConnectionO ...Show All

  • Visual Studio Express Editions Looking for Graphics/Painting libraries (free or commercial)

    Hi Friends-- I've been working on building some routines for a small painting application. Not looking to reinvent the wheel, I'm wondering if anyone can recommend a painting/graphics library. Free is great, but if there is a good commercial library/SDK/API out there, I'd like to consider it as well. Anyone have any suggestions Thanks! Hello jerfoo! If you are looking for libraries to run under VB 2005 you will probably need to get a comercial one. There are several excellent free graphics libraries (relying on OpenGL, DirectX, both or neither) but they are intended to be used under C and/or C++ and are mainly focused on games and GUI. You didn't specify but I think that it is not your case, ...Show All

  • Visual Studio Use VC++ 2005 Express Edition to handle _debugbreak breakpoint

    Hi, I have VC++ 6.0 and VC++ 2005 Express Edition installed on the same computer. My computer is well configured to pop the VC++ 6.0 debugger when _debugbreak line is reached, but I need to do the same with VC++ 2005, does someone knows how to configure the registry (or something else) to get the VC++ 2005 debugger shows up instead of VC++ 6.0 debugger Thanks Thanks for the quick reply. I just found that just in time debugging is not available with the Express Edition; http://msdn2.microsoft.com/en-us/library/5hs4b7a6.aspx ...Show All

  • Community Chat How to create an exe. file???

    How to create an exe. - file of my solution to use it on a PC without VC & .FrameWork David, Take a look at the Salamander .NET Linker, Native Compiler and Mini-Deployment Tool at http://www.remotesoft.com/linker/index.html . I haven't tried it out but it looks promising. ...Show All

  • .NET Development transaction scope with oracle produces a distributed transaction?

    Hello everyone, I am developing a project against oracle, i must use local transactions because i don't have any distribution, so what i want to know is if i use ado querys against oracle 9 into a transaction scope are they promoted to distributed Is there a way to know if a transaction is distributed or not an msdtc viewer or something Thanks so much When using System.Data.OracleClient with TransactionScope, your transactions will always be distributed. When you use the term "promoted", I'm not sure if you are referring to the new promotable transactions that are available with SqlClient and SQL Server 2005, but if so, that functionality is not available against Oracle. This reference has some information o ...Show All

  • Visual Basic VBEMPTY

    I was wondering, what keywork replaces "" in .Net I though that VbEmpty did that, but I was wrong. Thanks a lot for any input, Perhaps this fits the bill: String .Empty ...Show All

  • Visual Studio Express Editions Open a text file, edit it and save it

    Hello I am new to Visual Basic Programming. I would like to ask, how do I open a text file with its data in a TextBox of my programme How do I edit edit and after that save the text file in the same file format - Aakarsh   hi, you can use streamreader and streamwriter to do this job its not the only way but its enough you can see system.io namespace http://msdn2.microsoft.com/en-us/library/system.io.streamreader.aspx hope it helps ...Show All

  • Visual Studio Change default from VB to C#

    When I installed VS 2005 I chose Visual Basic as my default language. I would now like to Change it to C#. I remember somewhere in the install process it was stated that this was possible, but I can't find how it is done. Can someone help me One thing in particular is the news feed on the startup page. I know where in the options to make the change, but I don't know the valid value for the c# feed. Thank you very much for your help. I tried to search for an answer to this question, but must not have used the proper keywords. Anyway, thanks again, that solution worked. ...Show All

  • SQL Server SSPI handshake failed with error code 0x80090308

    Hi, I am using SQL Server 2005. I got the following error in event viewer. I tried to search on web the solution but failed. Does anyone have idea on that Many thanks :) Log]=Application [EventID]=17806 [Source]=MSSQLSERVER [Time]=02-07-2007 23:35:56 [EventMsg]=SSPI handshake failed with error code 0x80090308 while establishing a connection with integrated security; the connection has been closed. [CLIENT: 202.40.9.176] This link explains one possible cause of this error code: http://www.netmotionwireless.com/support/technotes/1470.asp , see whether it applies to your case. ...Show All

  • Windows Live Developer Forums VECollections in FF2

    Trying to load a VECollection in FF2 results in the following error: this.m_velayermanager has no properties I'm assuming this is an map control incompatibility and not my code I'm using the following test code: <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script src=" http://dev.virtualearth.net/mapcontrol/v3/mapcontrol.js"></script > <script> var map = null; var layerid=0; var source="160E6B936FFEBD1!111"; function GetMap() { map = new VEMap('mymap'); try { map.LoadMap(new VELatLong(51.076351, -3.05), 11 ,'h' ,false); } ...Show All

©2008 Software Development Network