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

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

AntonyZ

Member List

Tarey Wolf
PhilAJ
Christopher Ireland
nhl66pens
Jamie Thomson
Dhondtie
Mark.Stockton
Matt_
zenkick
GeeMann
andrew_zep
vic07
Cool Screen Name
MA2005
sandeepbhawsar
Jon Braganza
suamikim
Helen Cool Granny
Jon Stroh
LPlate
Only Title

AntonyZ's Q&A profile

  • .NET Development Can you send me the code 2, pleace

    Hi, Im using a custom UsernameTokenManager in WSE 3.0 but it always authenticates when it should'nt. I'm missing something but don't know what.     my Web Service code is: using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; [WebService(Namespace = " http://tempuri.org/ ")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [Microsoft.Web.Services3.Policy("usernameTokenSecurity")] public class Service : System.Web.Services.WebService {     public Service () {         //Uncomment the following line if using designed components         //InitializeComponent();   &nb ...Show All

  • Windows Forms Where to store your database in a new project

    I am getting started with VC#2005e and I'm trying to use an access database & open datasets programmatically. What is the correct place to store my database so that the app is ready for Clickonce distribution Should it be stored in MyAppFolder/bin/debug If so, how do I code the path for the connectionstring Should it be Application.StartupPath + "\myDb.mdb" Thanks ! Readers, store your access database in your bin\Debug folder and connect using Application .StartupPath + @"\myDb.mdb"   ...Show All

  • Windows Forms Client Area of MDIParent should not be sunken

    Hallo, i have an MDI Application in which all Childs are plugged in the MDIParent without Border. Now i want to change the look of the MDIParent client area without raised border and not sunken. Did you have an idea how i could manage this. Thanks Arnold Turning off the WS_EX_CLIENTEDGE style for the window would probably do that. Idle hope however, you can't override the MdiClient class to override the CreateParams property, it is sealed. Nor can you hook the MDI parent's CreateHandle() method to create your custom MdiClient instance. ...Show All

  • Visual Basic Multiple communication instances

    Hi Guys, The GUI s/w running on the PC allows the user to select a variable from the list of variables. These variables are globals of an application running on the hardware board. The GUI basically acts as watch window on these variables whose data is subject to change at run-time. At any given point of time only a single variable can be monitored from one GUI. The GUI has the following buttons: 1. Read the variable data 2. Modify the variable data with the user input data 3. Read the variable data continously till the user clicks stop button.(Stop button is present on the same GUI) To monitor multiple variables, another button is provided on the GUI which when clicked opens a similar watch window GUI(instance). The PC s/w and the b ...Show All

  • Visual C++ Intellisense becoming unable to resolve objects

    I'm posting this here and not in the general Visual Studio forum because my experience so far tells me the situation with C++ is different than with, say, C# (I have so far at least one example where VS's tools behave worse in the C++ environment than in that of C#). I have Intellisense getting confused and unable to resolve objects so often that I find myself closing the solution, deleting the *.ncb file, and reopening the solution. It almost makes me wish I had a "rebuild Intellisense" button... Kamen If I find the time - I will. It's not like MS will jump and solve it immediately. In mean time - the issue that I reported has not been answered , period. I also think it's a travesty that users can mark their own po ...Show All

  • Windows Live Developer Forums MSN Search Developer Site Error.

    I have been trying to access the msn search dev site all day to get an appid so that I can try out the api and I keep getting the same error: The operation failed. Please try again later. Has anyone else been having this problem Thanks, sn http://search.msn.com/developer/ Hi/Hola ansaria, I wrote to MSN Search Manager in Spain with better luck than you. He has replied very quickly with the solution: The problem is that this page cannot be accesed if your browser has not configured the English as the first language . I did the change and now I can access without problems. (si no te has enterado en mi penoso ingles me escribes al email que aparece en mi perfil y te lo explico en espanol). ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Need assistant in volume texture

    I'm still new in directx programming and quite dont understand with the volume texture. I've been learning directx programming with the example given by microsoft itself. it does quite a lot of things but lack of documentation. Straight to the point, i dont understand this chunk of code: { D3DLOCKED_BOX LockedBox; hr = m_pVolumeTexture->LockBox( 0, &LockedBox, 0, 0 ); if( FAILED(hr) ) return hr; for( UINT w=0; w<16; w++ ) { BYTE* pSliceStart = (BYTE*)LockedBox.pBits; for( UINT v=0; v<16; v++ ) { for( UINT u=0; u<16; u++ ) { FLOAT du = (u-7.5f)/7.5f; FLOAT dv = (v-7.5f)/7.5f; FLOAT dw = (w-7.5f)/7.5f; FLOAT fScale ...Show All

  • Visual C# Projects skipped during Build All

    Hi, I have recently upgraded from VS2003 to VS2005. My program consists of 33 projects, all but three are C#. The program was setup to build via command-line "devenv" to build the solution. After upgrading building the solution via command-line or within the IDE results in 4 C# projects always getting "skipped". For example: ------ Skipped Rebuild All: Project: TrendPlotGroup, Configuration: Debug Any CPU ------ Project not selected to build for this solution configuration Comparing the CSPROJ file for this project and a similar one that does get built does not show any differences other than the names and files that are different. Thanks for any help on this! Regards, Ben ...Show All

  • SQL Server Persistent communication session inside sqlclr proc?

    I suspect this is very poor design but I've been asked to research this: can I maintain a persistent communication session inside an sqlclr proc (tcp/binary packets) The process has to maintain very high throughput - setting up and tearing down a connection on each transaction is cost prohibitive. For TCO and deployment reasons it is preferable not to have a separate windows service etc that accepts requests from inside the clr proc. Is there the luxury of an alternative integrated into the database DONT DO THIS, stored procedures are not windows services. And i believe SQL Server monitors for long running CLR threads and will auto-suspend them. There is some bits and pieces about this in BOL2005. ...Show All

  • Windows Forms installState exception

    I'm developing a project with Visual Studio 2005 for Windows Vista. I've generated a group of assemblies and a project to install them with an .msi package. I've included the assemblies i want to install as custom actions inside install/commit/rollback and uninstall folders. Also i have witten my Installer class overriding install/commit/rollback and uninstall methods and all of them has it's own base.install(savedState) and so on. When i try to install it i get the following exception: cannot access assembly.InstallState file. This file is not created, what i'm doing wrong Thanks I don't know if it's important, but i'm developing it under windows XP and then i try it in vista. Yes the dialog box asking for permissions appear. so i ...Show All

  • SQL Server Count of employees

    Hi, We got of count of employees from measures against a date dimension. we need to get average count for a time period (ie..week,quarter,year ). and the formula for avg employee count: (empl-count on firstday of period+empl-count on last dayof period)/2 Date EMPCount for ex : 1-Nov-2005 2361 2-Nov-2005 2521 3-Nov-2005 2762 4-Nov-2005 2500 avg count for week in novemeber: 2361+2500/2. Kindly let me know how we can do this in SSAS cube. Thanks in advance Raj Hi, I tried with method "b" it's showing "#Value!" We have server created time Dimension is it because of that or we are getting active employ ...Show All

  • Community Chat KnowledgeNavigator

      KnowledgeNavigator is a Dot Net based knowledge abstraction tool using an Acess database. It is a set of organized categories and documents that you, the user define. The categories and documents created by you and are displayed as if they are in your computer file system except they are not. These documents and categories are contained in one central and transportable database, a database that you can send to friends and share with them or a database that contains all the documentation for a project, or better a set of in-depth topic on wine or even recipes. You can create Categories and subcategories of your own chosing and ogranization. New databases can be created and selected. KnowledgeNavigator will ...Show All

  • Visual C# Good examples for interfacing c# with sql server on the web?

    Hello, I am looking for some good examples for managing data in a database with c#. I need the basics, preferably relating to using c# in visual studio. Can anyone point me to some decent material on the web Thanks, Toben On this same question for Managing Data with sql..... Is it possible to generate a "TEMPLATE" to pull the data from sql (using C#) into a Online WEB PROGRAM. Basically the data that I will have to work with changes VERY frequently. The online program is used by many and needs updated constantly, so I would like to find a way to build a CSS (or similar) to pull that changed data frequently without having to change multiple web pages. I am a newbie to C# but could really ...Show All

  • Software Development for Windows Vista Using MXDW

    I would like to use MXDW to create XPS documents from any application. But I would like to automate the creation by automating the printing process. But when I try to do this it always comes up with the "save as" dialog box. I had the same problem using the MODI driver as well. Does anyone know how to get rid of that Any samples will be helpful. We're coping with the same issue - need to automate the file saving without querying user for file name. Tibi, I don't think that it's from the port monitor. We tried switching MXDW to our port monitor (that only saves all input to a file) and the Save as... dialog was still there. I was thinking that this was implemented in a filter, but that see ...Show All

  • Audio and Video Development ihdsim crashes

    ihdsim crashes after 3 or 4 times refreshing (ctrl+r). Using V6.0.5285.0. ...Show All

©2008 Software Development Network