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

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

Squiddy

Member List

Ayooya
Mystagogue
Mafti
LukeG
Handerson
MaggieChan
Sweed
prasindo
Will Riley
dzimmy
Martin123
daimengrui
BGW52
Pipz
Swapna.B.
RSUser08
McWhirter
Jonathan Sampson
schmod54
robinjam
Only Title

Squiddy's Q&A profile

  • Windows Live Developer Forums Adding html control with onclick event

    I have not been able to wire up an event to html controls that i have added to the map. i've simplified what I was attemptring to do to just adding a button and clicking on it. This will not launch the alert box when i click on the button added to the map. Are events not handled for added controls var vm = document.createElement( "INPUT" ); vm.onclick= alert('please work')" ; vm.id= "fre" ; vm.value= "Click" ; vm.type= "button" ; vm.name= "fre" ; vm.style.top = "400px" ; vm.style.left = "400px" ; map.AddControl(vm); It may been an issue with what types of controls the API allows to be added. N ...Show All

  • Visual C# How to edit ico files in the solution?

    When I double click on my application icon in solution explorer, it comes up in MS Paint, not in VS.net's icon editor. I checked file associations, and ICO files were not associated with anything, so I set them to VS.net -- made no difference. Tried Open WIth.. "Resource Editor" (Is that what the icon editor is called ) get modal message box "This file cannot be opened with the selected editor". Now if I reset the application to not have an icon, and attempt to edit the ico file, it opens with paint. How do I get it back in the icon editor again Thanks in advance this seems like it would be so easy... Hmmm, Are you sure its an Icon file not only with .ico but also internally By the way Visual Stud ...Show All

  • Smart Device Development Need to measure Tx/Rx and site size

    Hi I'm developing testing application for PDAs running Windows Mobile 5 and I need to get site size. In .Net Framework I could download method of Webclient the url into bytes array. In .NET CF there is no WebClient. I managed to get html source, but I can not find the way to get url size You can issue a HttpWebRequest to the site, get its HttpWebResponse (by calling the GetResponse method) and viewing the ContentLength on the HttpWebResponse object. Thanks, Sandy ...Show All

  • Visual C++ VS2K5 SP1 Beta

    After installing the SP Beta I now have code that does not build and I get errors in MS files: Error 21 error C2446: '<' : no conversion from 'MSXML2::IXMLDOMElementPtr *' to 'MSXML2::IXMLDOMElement **' c:\program files (x86)\microsoft visual studio 8\vc\atlmfc\include\afxtempl.h 553 Can you post your code that produces this error The line number to your source code should be should be part of the error. ...Show All

  • Software Development for Windows Vista Simple Reading Stream Filter , writing to out automatically

    Hi , I ve problem on making filter.The Transform method is not called.... CheckInputType is called once GetMediaType called as a loop CheckTransform called as a loop I use 3ivx encoder as an input to my this filter and 3ivx decoder as an output to this filter. Please help the problem i ve spent many times to solve... The code is like that : //Header File : #ifndef _SERVERSOCKET_H_ #define _SERVERSOCKET_H_ DEFINE_GUID(CLSID_ISocketSender,0x1915c5c7, 0x2aa, 0x415f, 0x90, 0xf, 0x76, 0xd9, 0x4c, 0x85, 0xaa, 0xf1); class CServerSend : public CTransformFilter { public : CServerSend( IUnknown * pUnk, HRESULT * phr ); ~CServerSend( ); HRESULT CheckInputType( const CMediaType *mtIn); ...Show All

  • Windows Forms MessageBox from worker (Non-GUI) thread

    In a C# (.Net 1.x) application, when a user clicks on the "Run Update" button, I launch a function DoRun() in a worker thread Question 1: I need to bring up a confirm dialog while the function is running based on some condition. That cannot be asynchronous. Is it generally Ok to bring up the Dialog (MesageBox.Show.....) from the worker thread If not, what is the way to do this synchronously on the GUI thread Question 2: I need the command button (btn_run) disabled at some point in the function, and then enabled again at the end of the function. While I know how to define delegates and do this with BeginInvoke, is there a simpler way, since I have a lot of buttons and do want to define a separate function to delegate e ...Show All

  • Smart Device Development POCKET PC FIRST BUILD

    i got my first smart device, pocket pc to load yesterday. all night and all day i tried to compile the basic windows file. i am completely lost on how to get it to compile. can someone help me here are the ouputs for the basic compile.... ------ Rebuild All started: Project: cccc, Configuration: Debug Windows Mobile 5.0 Pocket PC SDK (ARMV4I) ------ Deleting intermediate and output files for project 'cccc', configuration 'Debug|Windows Mobile 5.0 Pocket PC SDK (ARMV4I)' Compiling... stdafx.cpp C:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Pocket PC SDK\include\ARMV4I\winnt.h(51) : warning C4005: 'UNALIGNED' : macro redefinition C:\Program Files\Microsoft Visual Studio 8\VC\include\crtdefs.h(548) : see previo ...Show All

  • Visual Studio Team System Custom Actions in a Team Build

    I am trying to create a custom build action for a team build for one of our solutions. Our project is split into 2 main sections, an Architecture solution, and a GUI. The GUI uses Dll references to a common directory on a server where the latest release of the Architecture project resides. These references are resolved from an M: drive which for local development is either a mapped drive from the server or a subst to a local folder. When trying to create a Team Build for the GUI solution, initially it fails as it cannot resolve references, though the hint path is searching for M: drive. What I would like to do is perform a 'subst m: $(SolutionRoot)\Architecture\Binaries' before the compile starts and then 'subst m: /d' after the compile ha ...Show All

  • Visual C++ Is MFC in VC++ difficult? how long will it take to learn basics?

    dfffd hi, some links are going to usefull for you http://freecomputerbooks.com http://www.sureshkumar.net from this you may get help to learn basics ...Show All

  • Visual Studio 2008 (Pre-release) WPF observable Collection

    I am trying to return an observable collection so that my Presentation Layer can build the UI. I am using the following code: public class PhotosCollection { public static DataSet ds; private static DataTable PhotoDataTable; private ObservableCollection < Photo > photos = new ObservableCollection < Photo >(); public ObservableCollection < Photo > Photos { get { return this .Photos; } } } public class Photo { } The image sould be retrieved from an URL, and the information about url is stored in the ds, table "Photos" (the information is actually a link). I am not sure how I could make that link to be image source. Any ideas.... Any help is greatly apprecia ...Show All

  • SQL Server where can I find Microsoft.ReportingServices.ReportRendering?

    Hi, I could not find this assembly in folder X:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportServer. Please help. I suppose you are looking for the assembly that defines the "ReportRendering" namespace. In RS 2005, this is: Microsoft.ReportingServices.ProcessingCore.dll -- Robert ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Suggestion for the forums

    I was thinking that this forum could serve as a "quck and dirty" content pipleline :). Any chance there will be an "upload your stuff here" forum Thanks for the suggestion. We're investigating the best way to enable sharing code, snippets, projects, etc. If there's enough demand for an additional forum, we can look into that too. :) ...Show All

  • SQL Server SQL Query help

    i have table "clubinfo" with following fields and data. ClubID FranchiseCode StartDate EndDate ------------------------------------------------------------------ 786 AAAAAA 2005-12-14 15:20:43.340 2006-06-14 14:40:53.270 786 BBBBBB 2006-06-14 14:40:53.270 2006-08-21 14:24:28.060 786 CCCCCC 2006-08-21 14:24:28.060 NULL above three rows describes franchise AAAAAA started on 2005-12-14 and sold on 2006-06-14 to BBBBBB so franchise BBBBBB started on 2006-06-14 and sold on 2006-08-21 to CCCCCC and Endate for CCCCCC is NULL so its a current franchise i wanted to write a sql query that will find franshisecod ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Bug in D3DX Anim Controller

    Seems there is a bug somewhere in the Anim Controller. This used to work fine in an older version of DX9, but after I upgraded to the August, and then October SDKs, this problem started to occur. If you output a skinned animation using the Maya .X file plugin, and then load that .X file into the Mesh Viewer, you will see the animation wildly jumping around at various points. It appears to be a problem with SRT animation, because I wrote a util to convert the SRT data in the file into Matrices - and after doing that it plays fine both in the Mesh Viewer and in my own app. Also note that TINY.X is all Matrix animations, and again plays fine, which is what first gave me the idea to try this. ...Show All

  • Visual Studio Express Editions strcpy working even after deleting pointer.

    below code dosnt throw any error and printing goodmorning. Why strcpy working after deleting the str please explain why this happening char *str = new char [100]; delete [ ] str ; strcpy ( str ,"goodmoring"); cout <<str; thanks for the reply. I again looked into the memory str is pointing to before and after deleting. its having memory even after deleting :) Wondering what  delete really mean by   ...Show All

©2008 Software Development Network