Software Development Network Logo
  • Visual C#
  • VS Team System
  • Visual J#
  • Visual FoxPro
  • Visual Studio
  • VS Express Editions
  • Visual Basic
  • Smart Device
  • Visual C++
  • SQL Server
  • Game Technologies
  • Windows Forms
  • Architecture
  • Windows Vista
  • .NET Development

Software Development Network >> Eviakhan's Q&A profile

Eviakhan

Member List

JP Duplessis
apdil
Krishna RK
srinivas duddu
Nasir Javed
ecofriend
Peter Blomqvist
John Cunningham - MSFT
GarryB
newDev
Greg.Duffield
FONTANA Guillaume
toronto_kl
AceHack
Crypto_N
Ameralis Zaiir
MSpencer
devender 1623
SUpton
Erick Ellis
Only Title

Eviakhan's Q&A profile

  • .NET Development Problem with Mozilla WSDL client

    I am having problem with using the built-in Mozilla WSDL with a ASP.NET web service. I actually located the root cause of the problem, but I don't know how to fix it. Here's what I found -- Mozilla sent this out: < env:Envelope xmlns:env =" http://schemas.xmlsoap.org/soap/envelope/ " xmlns:enc =" http://schemas.xmlsoap.org/soap/encoding/ " env:encodingStyle =" http://schemas.xmlsoap.org/soap/encoding/ " xmlns:xs =" http://www.w3.org/1999/XMLSchema " xmlns:xsi =" http://www.w3.org/1999/XMLSchema-instance "> < env:Header /> < env:Body > < a0:HelloYou xmlns:a0 =" uri:MyService "> < a0:yourName xsi ...Show All

  • Visual C++ error LNK2019: std

    In  VC7 I got this link error: filesys.obj : error LNK2019: unresolved external symbol "public: bool __thiscall std::locale::_Iscloc(void)const " ( _Iscloc@locale@std@@QBE_NXZ ) ,This symbol is in the function "class std::num_put<char,class std::ostreambuf_iterator<char,struct std::char_traits<char> > > const & __cdecl std::use_facet<class std::num_put<char,class std::ostreambuf_iterator<char,struct std::char_traits<char> > > >(class std::locale const &,class std::num_put<char,class std::ostreambuf_iterator<char,struct std::char_traits<char> > > const *,bool)" ( $use_ ...Show All

  • Windows Forms Run a program in the background

    How can i run a program in the background I've putted 0% oppacity but when i press alt+tab it shows that there is something running. Thanks, Guilhreme Run in the background in what way Have no UI at all Just not show up in the alt+tab display You may want to look into running it as a Windows Service or perhaps adding a NotifyIcon (so as to give the user some way to get to your running app) and hiding any forms that are visible (even when at 0% oppacity) with their Hide() method. ...Show All

  • Visual Studio Express Editions VB.net - sqlserver express demo application on cd

    Hello, I wish to make a demo version of my VB.net express - Sql Server Express app. For this demo I would like to burn the proyect (.exe file) with the SqlServer Express user Database and other necesary files on a cd and then submit it to people interested. If they receive the cd and execute the demo.exe file the database should be copied to let's say 'c:\mydemo\' and if they terminate using the demo would ask the user: 'Delete demo Database 'c:\mydemo\' ' and ifso the database should be deleted. Now how can that be achieved with VB.net express How to manage the Vb code to indicate the Path of the database and copying - deleting ...Show All

  • .NET Development ExecuteNonQuery: Connection property has not been initialized Error

    laptop spec: XP pro Programs using: ASP.NET Web Matrix I am trying to create a webpage using ASP.NET Web Matrix that will accept 2 fields and then upload into the database. This a portion of code I have in C#: <%@ Page Language="C#" Debug="true" %> <%@ import Namespace="System.IO" %> <%@ import Namespace="System.Data.SqlClient" %> <script runat="server"> void Upload(Object s, EventArgs e) { SqlCommand dataCommand = new SqlCommand( "INTERT INTO SongDetails (SongTitle, SongArtist, Song" + "VALUES (@Song ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. .x Model and duplicated vertices issue

    I can see that in a .x template template VertexDuplicationIndices { <b8d65549-d7c9-4995-89cf-53a9a8b031e3> DWORD nIndices; DWORD nOriginalVertices; array DWORD indices[nIndices]; } There is a duplication of vertices. I believe this was done during the export when faces sharing a vertex duplicates that vertex. Am I right to say that My main problem is how can I get pointers or references back to the original vertices Can anyone help Sorry for the delay, I was out with my mates and when I got back I was in no fit condition to do anything. There is a differe ...Show All

  • SQL Server Loop through each record and then each field within each record

    I need to essentially do 2 loops.  One loops through each record and then inside each record row, I want to perform an insert on each column. Something like this maybe using a cursor or something else: For each record in my table (I'll just use the cursor)      For each column in current record for cursor               perform some sql based on the current column value      Next Next So below, all I need to do is figure out how to loop through each column for the current record in the cursor AS DECLARE Create_Final_Table CURSOR FOR SELECT     FieldName, AcctNumb ...Show All

  • Visual Studio Unable to debug: The binding handle is invalid

    When i try to debug a C# application I get this error: Error while trying to run project: unable to start debugging the binding handle is invalid What can i do Thanks for your answers i tried with "Attach to process" but i get the following error: Unable to connect to the Microsoft Visual Studio Remote Debugging Monitor named <my pc name>. The binding handle is invlaid But i am debugging a local application, not a remote one ...Show All

  • Smart Device Development Having an icon linked to my program

    Hi, I'm making an application with several parts to it. I have the main application finished, so that you can execute it and access all the different aspects of the program. However, is there a way to have several other programs (or just icons) calling the main program with an argument or something that would allow the main application to open up to one specific section. For example, the application is a database, I would like to have one icon in Windows to open the application and have it load category A, have another icon to load B, and another C. How would I be able to link these icons to the main application so that I have icons ...Show All

  • Visual Studio Install VS 2005 Standard Ed Hangs on Executing Action: RemoveTempHxDs

    I have a 1.2 Ghz Dell laptop with 1 gb of memory.  I started the install almost 16 hours ago.  MSIexec is using 97% of my cpu.  The install failed 2 times before this, but it gave me the option to send a report to MS.  This time I'll just have to kill it.   I have the version that was given to me at the Chicago launch.  I have uninstalled Beta 2 and VS 2003 without any difficulty. Same problem. Solution: I concur with those who have suggested copying the files from the CD to a local or network drive (then installing from there). This solution worked for me. (Install fai ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. IndexBuffer leaking Memory

    If I create an IndexBuffer like 1) the memory consumption increases dramatically after some device reset's caused by window resizing. Even if the indexbuffer is not recreated after the reset this strange thing happens. If I create the indexbuffer the second way, everything works fine. Even if I put 1) in the CreateDevice function of one of the D3D SDK examples the error arises. Thanks for hints or suggestions about what's going wrong. 1) IndexBuffer buffer = new IndexBuffer(device, 16384, Usage.Dynamic | Usage.WriteOnly, Pool.Default, false );   2) IndexBuffer buffer = new IndexBuffer( typeof ( int ), 4096, device, ...Show All

  • .NET Development FtpWebRequest

    .NET Framework 2.0 c#   I need to access a FTP Server. I'm using FTPWebRequest as described in visual studio 2005 documentation. Everything works fine except the following: 1) I dont know how to change de current working directory on the server to the parent directory 2) Why cant I do this, or why doesn't work In Internet explorer works! 3) how can I send some FTP low levels commands to the server using .net 2.0 ftp api. <some code...for FtpWebRequest> FtpWebRequest ....Create(" ftp://192.168.1.4/../ret "); thanks Jose Cruz You should set the Credentials property of FtpWebReq ...Show All

  • Visual C# Exporting Faceid icons

    Hey peeps, I'm having a major dilema of which I require some help if possible. I'm creating an bespoke application for the company I work for, and I require to use some of the icons supplied in Outlook 2000/XP, now I know you can use a faceid value to display that image, but does anyone know how I can use them in my none office linked application. I have a piece of software that createsk new icons from any dll, ocx, exe that you point it at. I am unable to achieve the same effect as I do not know where the FaceID's are stored. I know where is something called a tcid file, but just unable to locate them. Can any one point me in the direc ...Show All

  • .NET Development Problem passing OBJECT to a COM server

    Hi I have an ATL COM Server that accepts an argument of type variant*. With VB6 we haven't problems, passing to VB.NET the server method fails because the data is always VT_EMPTY. // MIDL -------------------------------------------------------------- [id( 6 ), helpstring( "method ResponseArray" )] HRESULT ResponseArray([out] LONG* Slave, [out] LONG* Function, [out] LONG* Count, [in,out] VARIANT* TelegramData, [in] LONG WaitTime); // Server  ------------------------------------------------------- STDMETHODIMP CModBusConnection::ResponseArray(LONG* Slave, LONG* Function, LONG* Count, VARIANT* TelegramData, LONG WaitTime){ if ( m_pMod ...Show All

  • Visual FoxPro How random is the RAND() function?

    Hi, Is the RAND() function in FoxPro based on a well-known algorithm - i.e. is it certified or have anybody performed a diehard test ( http://en.wikipedia.org/wiki/Diehard_tests ) Thanks in advance for any replies, /Michael I don't know what algorithm they're using, but I have done some tests on it and found it's pretty good. I published code for Chi-squared and Coupon Collector's tests in HackFox. Tamar ...Show All

©2008 Software Development Network