Software Development Network Logo
  • Visual J#
  • Visual C++
  • Microsoft ISV
  • Windows Forms
  • Visual Studio
  • VS Express Editions
  • Visual C#
  • Windows Vista
  • .NET Development
  • Visual Basic
  • Visual FoxPro
  • Game Technologies
  • Smart Device
  • Windows Live
  • Architecture

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

JockForrester

Member List

hornnick
DanJGarner
wackoyacky
IgorM
Anjali
Acts7
bob_r1970
Pongo
Mark Barber
silverboy
BerndD
mscwd
WinL
Sagacity
grellsworth
tim avm
NewWebTester
JamesChapman44
lugi
Slybacon
Only Title

JockForrester's Q&A profile

  • .NET Development Downloading files from an ASP.Net popup.

    I have a problem downloading files. My requirement is that I want to download files(mostly .mpp, .xls files) from a popup window. I am giving the code from an iFrame in the popup to avoid the popup being closed. But I am not able to give a suitable name for the downloaded file(it is downloaded in the name of the iFrame itself). Also i am ignorant of the fact if the download is complete or not. Is there any way I can tackle this problem Hello, A great place to ask ASP.NET questions is the ASP.NET Developer Forums . Hope that helps, Stephen http://blogs.msdn.com/stfisher ...Show All

  • .NET Development Xmlschema compilation problem (.NET framework 1.1)

    Hi all, I am working on an application that needs to be able to read and lean on the XMLSchema information contained in the web service description(wsdl). After i got a wsdl from address : http://ws.cdyne.com/delayedstockquote/delayedstockquote.asmx wsdl , I attempt to get its schema and compile using XmlSchema object(iam using vs2003 with .net framework 1.1), but an error occured: "The 'http://www.w3.org/2001/XMLSchema:schema' element is not declared. An error occured at file:///c:\test.xsd(68,9 ) " Then I tried to open this schema by Xml Spy, the result shows that this schema is valid. I myselft think that it's ok ...Show All

  • .NET Development XSLT and Intellisense

    Does anybody know why Intellisense auto completion feature is disabled only for the tags in the  " http://www.w3.org/1999/XSL/Transform " namespace and not the others (like XHTML) in an XSLT document in Visual Web Developer Express 2005 Any way to bring it back on I can't repro this.  Please provide more info, for example, the specific XSLT stylesheet, and the VS build number, thanks. ...Show All

  • Windows Forms I don't know how to deserialize multiples objects from a binary file - help!

    I'm having a trouble. I'm working in an application that allows to the user designs a form at design time (drag controls into a form)... The problem is that a form can't be to serialize. Then, I use a foreach bucle for get all controls in the form.Container.Components collection. Each control is serialized into a file called "myserialize.bin" (using append in the stream). All working until here. I don't know how load or re-create each component (into the "myserialize.bin" file). How to deserialize the objects (stored in a binary file) and that this files allow in the original state (at design time). I need help in this point. Regard ...Show All

  • SQL Server Forms security deploy problem and email-subscription

    Hi, I have changed my Reporting services from Windows Security to Forms Security. When I deploy reports on the local SQL server, a windows pops up. This windows requires my username and password for the report server. After I input them, everything works fine. However, When I deploy reports to the above server from the different SQL server located on a different computer, the windows always pops up, although I type the same username and same password. Any ideas Thanks a lot.   Hi , I have configured SMTP server and i have done email subscription to particular customer called "tbs".The repor ...Show All

  • Windows Forms fix column width in datagrid

    Hi All, I want to know how to fix column width in a datagrid. I have already looked at www.syncfusion.com (Windows FAQ by George Shepherd) but it does not seem to address this issue.  Any help would be greatly appreciated. cheers, Raiden Hi Finn, Thanks for your response. I am already using gridcolumnstyle which allows you to set the column width&n ...Show All

  • Visual Studio Team System script fails after new version of software pushed

    I am currently trying to create tests to test microsofts new CRM application.  I have recorded numerous web tests, but they will stop working after a change is made to the application.  As far as I can tell it is linked to an import of the configuration from another server.  When the script does a form post of the information submitted in the test, it gets back an error stating that the form has expired.  I can re-record the test now and it will pass, performing all of the same functions.  This is an out of the box app from MS that we have tailored.  I am trying to find a way to modify the tests so that they con ...Show All

  • Visual C# Where is C# snippet editor?

    I found snippet editor for VB.NET 2005. However there is no snippet editor I found for C#. Yes, I fould one which looks so... bad.. editor..from MS. It seems a school project. Anyway, where I can find snippet editor for C#.NET   I don't think there really is one. Code snippets in C# were more of an after-thought (e.g. snippets support "Import" but not "using"). But, there is Snippy . -- Peter _________ http://www.peterRitchie.com/SortableValueType.snippet . ...Show All

  • .NET Development Authorization manager, checking tasks/roles

    Hi, we have an authorization manager store on a domain in ad (server 2003 with 2003 functionality). // user : user name // domain name: mldap://CN=AuthStore1,CN=" + App Name + ",DC=rod,DC=external // store name : AuthStore1 // app name : Addresses // role name : Maintain Addresses and Phone Numbers public bool Validate( string sUser, string sDomain, string sStoreName, string sApplicationName, string sRoleName, int nFlags) ... AzAuthorizationStoreClass AzManStore = new AzAuthorizationStoreClass(); AzManStore.Initialize(nFlags, sDomain, null ); IAzApplication azApp = AzMa ...Show All

  • Visual Studio Express Editions Free ebooks

    Where can I download the free Microsoft Visual Basic 2005 Express Edition: Build a Program Now! ebook Thanks, Antonio Hi MS Press Free book http://msdn.microsoft.com/vbrun/staythepath/additionalresources/introto2005/ Build a program now https://connect.microsoft.com/downloads/downloads.aspx SiteID=40   Ron ...Show All

  • SQL Server Multiple devices for a subscription

    We have a need to send events out to multiple devices for a single subscription, the user may be able to decide what devices with what subscriptions. So far we have the following two ideas for accomplishing this: 1) create a multiple subscriptions, one for each device the user wants the events to go to 2) create a multiple unique device entries for each subscription So far as I’ve been able to tell there is no transaction support when using the notification services API, so having to update multiple records for a single subscription can lead to further maintenance issues if the updating were to fail part way through. Is there a simpler wa ...Show All

  • Visual Basic Events: why use them instead of member call coupled with DoEvents()?

    Hello. I've been reading up on Events, and don't see what they offer that just doing a member call, followed by DoEvents() would not do for you When I indicate an event, the function that indicated it must wait anyway for the event to return control. And DoEvents() would accomplish the same thing of seeing if, for example, the user clicked the 'Cancel' button if I was to call a function, then DoEvents() after it, then checking for cancel button. What am I missing I don't see any difference. I searched these forums as well and didn't see an appropriate response. Any help, or references to where an identical question was asked would be a ...Show All

  • .NET Development Gridview Control - VWD2005

    Hi. I'm having a big problem with the subject control. I've done a lot of searching and it seems it is a common problem but I haven't found a solution. When I click Update on the Gridview, the page refreshes but does not do an update. Can somebody please tell me what I am doing wrong. I am at my wits end... I believe I have done this exactly to the examples provided in help and Microsoft online examples. Here are parts of the code. < asp : Content ID ="Content1" ContentPlaceHolderID ="ContentPlaceHolder1" Runat ="Server"> < asp : SqlDataSource ID ="SqlDataSource1" ...Show All

  • Visual Studio Latching Commands

    I'm creating an Add-in (in C#) and have a top-level menu item (command popup) next to the Tools menu item in VS IDE. Under that top-level menu, I have a few more command popup items. Then under one of those command popup items, I have a submenu with 5 commands.  When a user clicks on one of those ommands, I want to latch it (show a check mark next to it) and any other of the 4 commands on that submenu to NOT be latched. In other words, I want only one of the 5 commands to be latched at one time.  I'm having a hard time figuring out how to manage this in the QueryStatus method since I can't figure out which one was actually clicked. ...Show All

  • SQL Server Sql Server Management Studio and other client tools question

    Hi, I am familiar with sql server 2000 but new to sql server 2005. Couple days ago, I installed sql server 2005 on a server by choosing all possible options. However, after installation, I can only find programs-->microsoft sql server 2005-->configuration tools-->, and can't find any client tools I installed. I have to say that sql server 2005 is much different from sql server 2000, so I am totally confused. I even tried to use control panel to change the installation but still can't get the tools to show. Any help will be appreciated. Thanks, Luke, The default installation locati ...Show All

©2008 Software Development Network