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

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

killers

Member List

mshvw
ReiXou
Skipping Rock
NateRickard
AVVIT
Todd Biggs - Windows Live
NoEgo
Chris49
stenlik
Shadi_05
Sune Henriksen
AJB123
SynergyNT
parveenpanjla
UnknownScripter
Antropoid
mfsumption
UtterMan
Shawn Farrell
pmanisekaran
Only Title

killers's Q&A profile

  • SQL Server Sql Server Query on Web

    i query sql on web what is error Microsoft OLE DB Provider for SQL Server error '80040e14' Could not find stored procedure 'WebSicilBilgisi'. /ebelediye/emlaksp.asp , line 225 It seems like the server you are querying is having trouble finding a stored procedure that is (probably) referenced in the asp page. As to the reason why, only those who are maintaining the asp page and the server would (hopefully) know... /Kenneth ...Show All

  • Visual Studio 2008 (Pre-release) svcutil magic command line

    When I create a win forms application and create a service reference to a WCF service I get System.ComponentModel. BindingList <Studentservice. StudentContract > FindByName( string firstName, string lastName); When I run svcutil by hand to create proxies for a WCF enable ASP.Net website - it defines the return value as StudentContract[] FindByName( string firstName, string lastName); After reading the svcutil help I found the /ct: option and specified /ct:System.ComponentModel.BindingList But this fails - telling me it cannot find the type. So I looked at the output in the output window in VS when I create a service reference - and this did not give me the magic I needed. So my questions are: 1) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. I think I need help revealing some magic?

    So I like to have everything under my control.... and I think there are a lot of things hidden from me that are creating weird behavior. For instance: Pass Game instance to the renderer I wrote and initialize GraphicsDeviceManager there, then the gdm's GraphicsDevice is always null. I fixed that by using the gdm.ApplyChanges() method. This wasn't done in the sample code. However, now nothing renders, so I must still be doing something incorrectly. If I initialize the gdm in the Game class, and pass it around, everything works fine. Why is this Thank you. -Nick hmm.... that kinda sucks. You'd think they'd have just made it a member of the Game class and initialize a basic one for us. ...Show All

  • Visual C++ Conversion Question

    Hi Folks; I'm running a WMI query to get the sizes of the disk drives in a computer. The result of course is a large number but I want to convert that number into a nicer format (i.e. 80G). So this is what I have thus far: oid GetWMITotal(HRESULT hres, IWbemServices *pSvc, char * sQuery, LPCWSTR sCol, char * data) { _variant_t varData; IEnumWbemClassObject* pEnumerator = NULL; ULONG uReturn = 1; IWbemClassObject *pclsObj; char cSuffix; int iStringOp = 0; hres = pSvc->ExecQuery( bstr_t( "WQL" ), bstr_t(sQuery), WBEM_FLAG_FORWARD_ONLY | WBEM_FLAG_RETURN_IMMEDIATELY, NULL, &pEnumerator); HRESULT hr = pEnumerator->Next(WBEM_INFINITE, 1, &pclsObj, &uRetur ...Show All

  • SQL Server Survey Location in MSSQL Server

    hi everyone When I add a Survey the information goes to the database server>table>Lists. tp_Fields holds the question and the choices tp_ItemCount gives how many users response to that but i cant find the field where our selected answer to that survey resides in the database server. Can any one please tell me to which field or table the User's selected answer goes Thanks anshul You are trying to ask us something for a specific application that probably noone knows here (as least I don’t :-)) If you want to see where the values fo to, start SQL profiler, do a survey and see what is going on in behind. Then you will fin the table related to the given answers. HTH, Jens Suessmeyer. ---- http://www.sqlserver20 ...Show All

  • Visual Studio Team System Full list of Work Item Field names

    Hi, is there a full list of Work Item field names available yet I want to add a Customer field to a work item but I'm thinking this is quite common and my already be defined somewhere Thanks for your help Graham See the MSDN documentation on "Using System Fields" here: http://msdn2.microsoft.com/en-us/library/ms194971.aspx ...Show All

  • Visual Basic Edit properties of controls on other forms

    I understand how to change the value of a textbox by making a new form in the code Dim Form2 as New form ... Form2.show() This however does not work for me, i need to edit existing form controls that i make in the designer. So instead of making a new form in the code, i wnat to just edit one i already made. Right now i can only get the code to run when I dim Form1 as new Form I cant dim it as new, then nothing works and i get null erros and such. Any help will be greatly appreciated, I did search the forums and all i found was what i have above and that wont work, atleast i dont believe it will. I'm not sure I understand exactly what you'd like to do, but it sounds like you're t ...Show All

  • Visual Studio Express Editions Verify sending an email

    is there a way to verify an email was succesfully sent from vb I have got it to send without any problems, but I would like to know if it was sent without any problems. This is what I have got sofar Dim Email As New System.Net.Mail.MailMessage( My .Settings.user, My .Settings.email1) Email.Subject = "Test Subject" Email.Body = My .Settings.mymessage Dim mailClient As New System.Net.Mail.SmtpClient() Dim basicAuthenticationInfo As _ New System.Net.NetworkCredential( My .Settings.user, My .Settings.identifier.ToString) mailClient.Host = My .Settings.email3.ToString mailClient.UseDefaultCredentials = False mailClient.Credentials = basicAuthenticationInfo mailClient.Send(Emai ...Show All

  • Visual Studio Express Editions Can "F1" in Visual C# Express use locally-installed Windows SDK documentation?

    I'm successfully using Visual C# Express, but the built-in documentation doesn't contain topics for many Windows SDK classes I'm using. I've downloaded the Windows SDK documentation and can see the topics there, but I can't figure out how to get the Visual C# Express Help menu (and "F1" in particular) to use the Windows SDK documentation. Is it possible I don't want to use Internet help. Thanks very much, -Rick Hi, If you successfully installed VS express edition, it'll auto install the corresponding documentation. You are using the C# express edition, so it is possible that you can't find the whole documentation about topics such as VB, J# and other C# unrelated SDK in local machine ...Show All

  • Windows Forms How to set the line style when using ControlPaint.DrawReversibleLine

    ControlPaint.DrawReversibleFrame lets you set a frame style (Dashed, Thick, etc) but ControlPaint.DrawReversibleLine only draws a plain, ordinary line. Is there a way to draw a reversible line with different styles Thanks in Advance This thread suggests that it is more efficient to invalidate the control to draw a selection frame than to use a reversible line -- not very good advice unless your user has a fast computer and a newer graphics card. A better approach is to define your own line style and draw it yourself! The decision to leave the ROP out of GDI+ is still a questionable choice IMHO :-) ...Show All

  • Smart Device Development Serial Port Communication

    Hallo, I wrote a little prog, which sends a message and the messages md5 over the serial port: I'm using Visual Studio 2005.NET, PocketPc-Emulator and a virtual serialport-driver. This way I connected the emulator to COM2 and COM2 to COM15. So I can send and receive Data via the emulator on COM2 and via Win32-Application on COM15. For testing I write all incoming Data on the emulator to the serial output. Private Function com_sendString(ByVal toSend As String) As Boolean Dim hash As String hash = "##HASH:" & md5(toSend) & "##" Try If (serialPort.IsOpen = True) Then serialPort.WriteLine(toSend & hash) Else MsgBox("Port is closed!!") En ...Show All

  • Visual Studio Express Editions Platform sDK missing files ...?

    Hello, Im new to VS EE (Visual Studio Express Edition) i started to learn C++ but once i installed Platform SDK for windows server 2003 r2 i started to get the following ERROR while trying to create a Windows aplication: ------ Build started: Project: test, Configuration: Debug Win32 ------ Compiling... stdafx.cpp c:\program files\microsoft platform sdk for windows server 2003 r2\include\windows.h(157) : fatal error C1083: Cannot open include file: 'excpt.h': No such file or directory Build log was saved at "file://c:\Documents and Settings\User\Desktop\test\test\Debug\BuildLog.htm" test - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== As you can ...Show All

  • Software Development for Windows Vista How to find out the type of Vista OS?

    Hello all, Is there any registry key or environment variable from which my setup can read the value and determine if the OS version is a 32-bit one or a 64-bit one Any clue on how to find this out Regards..... Bobby. ...Show All

  • Windows Forms Restricted User: "Access to the path 'C:\Program Files…\InstallerTest.InstallState' is denied.

    I have a test VS2005 Setup project which 1) Adds a registry entry to HKEY_CURRENT_USER 2) Displays a messagebox in the Install custom action. 3) Installs a simple app. 4) Installs a shortcut to the app on the User's Programs Menu. It is installed by an Administrator. When first run by a Restricted User clicking on the shortcut a Repair is attempted ending with the error message "Access to the path 'C:\Program Files…\InstallerTest.InstallState' is denied. What can be done to make this setup work for Restricted Users Regards Tim The log file: === Verbose logging started: 22/11/2006 09:49:44 Build type: SHIP UNICODE 3.01.4000.2435 Calling process: C:\WINDOWS\Explorer.EXE === MSI (c) (F4:18) [09:49:44: ...Show All

  • Visual Studio Express Editions socket accept question

    Hi, I have a problem with the accept method of the socket class, if I place a socket in a listening state and accept a connection, the returned new socket has the same localendpoint as the listening socket. Surely this is a bit silly Doesnt this tie up the listener And if this is the case why have a new socket at all Another thing, is there any way to determine the remoteendpoint of the connecting machine prior to accepting the connection I mean, once you call accept the computer is connected, right I'd like to be able to refuse the connection based on the remoteendpoint without ever accepting the connection in the first place. And who said the socket class was better than winsock We never had any of these issues before. PsychU ...Show All

©2008 Software Development Network