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

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

JockForrester

Member List

errolian
Abualnassr
GS80
dinh xuan dung
muthuraja
Omid Sadeghian
xtw
jjjohan
Danny C. McNaught
CJW99
oolon
darknessangel
JoeBlow123
kmishle
BronwenZ
WilfridB
Simple Samples
Uma P
StickyC
hendrik swanepoel
Only Title

JockForrester's Q&A profile

  • SQL Server page number & records number

    1. how to show page number & total page number in report body 2. how to show total records number I'll see if there is anything I can come up with! If anyone else has any ideas or thoughts, feel free to share! I just do not understand why SSRS should not allow us to use pagenumbering in the data. It doesn't seem to make much sense to me. Thanks, Curtis ...Show All

  • .NET Development SoapExtensionAttribute at the client proxy side

    Hi, I try to create a SoapExtensionAttribute, but when I try to add a web reference the SoapExtensionAttribute don't be inserted in a client proxy side, what I have to do to add the SoapExtensionAttribute in the client proxy side when I add the web refenrece. ps.: I can't put the soapExtensionTypes in the app.config because in the current project has another web services from third-parties, and I implement a SFDE (YML Class) but don't work. Any ideia Att. Walter Sorry by english I try a new way, aparentyly works fine. 1) I put the soapimporter, soapreflector and soap SFDE on machine.config 2) put the dll in the gac 3) Restart machine .... voala works, now I try to do whi ...Show All

  • .NET Development XmlSerializer Class not allowing Parameters when initialized?

    Hi all, I am running through some examples/samples of XML Serialization and have run into some strange problems. I am using VS2005 (therefore using .NET 2.0, C#). I have a class that I want to serialize (correct attributes have been assigned to the Class and its relating properties). So, to do this I want (so all the articles are telling me) to do the following... XmlSerializer s = new XmlSerializer(typeof(ShoppingList)); ...from this I get the following error message... No overload for method 'XmlSerializer' takes '1' arguments. I have included both the System.Xml and System.Xml.Serialization namespaces. Hope you can help. Thanks in advance. ...Show All

  • Visual Studio Tools for Office Make a certain menu invalid or disabled

    Hello folks: I have a question on similar lines of this thread ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=579204&SiteID=1 ) ...I hope someone can help me in this... I am trying to disable the default CommandBarButtons in Context Menu in Outlook 2003, but somehow setting the Enabled flag to false doesn't seem to work for me. Using Outlook 2003 addin and VS 2005. The following is the code I am using .. Am I doing anything wrong here   I am getting an the following exception on the statement where I set the enabled flag to false. "Error HRESULT E_FAIL has been returned from a call to a COM component.:System.Collections.ListDictionaryInternal" private Microsoft.Office.Interop.Outlook. Application com ...Show All

  • Visual Studio Express Editions Forms in Visual Express

    I have start creating a form even when I am begineer. I was watching a person @ Microsoft. When I try to right a script there is no scroll bar that makes it easier for user to scroll and pick the task of the this rather then writing the whole code but when I type Me. no scroll bar comes. Why and How can I fix it. Hello You will probably need to show us your code before we can help. However one possible remedy is to delete the .ncb file in your Solution’s directory, this will then be regenerated when you open the Solution and this may solve the problem providing your C++ compiles. Thanks Damien ...Show All

  • SQL Server Identify queue that activated sp ?

    Hi there I have multiple queues with the same activated stored procedure (for various reasons we are trying this scenario). My biggest obsticle is i cannot figure out a way to determine with the activated sp which queue caused it to activate. Basically i need to make the sp dynamic, so that no matter which queue activated the sp the sp can determine the queue name and use that dynamically to do the receive command from the right queue. I am sure it is possible since sys.dm_broker_activated_tasks shows how many sp's are activated by each queue, however the sp name is the same for all queues so that does not help me. How do i determine within an activated sp which queue caused it to activate Thanx ...Show All

  • SQL Server Managing reporting services models

    Hi everybody, I have the following scenario: I have web application which is creting new SQL Server database each time when new customer is created in the application. I would like to give users the possibility of creating ad hoc reports and thus I need to create new connection and report model (and deploy them to my reoport server) each time when the new database is created (report models can not use multiple databases). Does anybody knows how can I do that Maybe there is another approach to this kind of problem Thank you in advance, Marek You can create datasources and autogenerate models from these datasources using the SSRS SOAP API. Check out this article in BOL for information on ...Show All

  • Visual Studio 2008 (Pre-release) Example about using Streaming encoding to transfer a large file in WCF

    Hi Everyone, Does any one have a good example about how to transfer large files using NetTCP binding and Streaming encoding in WCF. Regards, Jdang Hi Jdang, Have you looked at this sample on MSDN http://msdn2.microsoft.com/en-us/library/ms751463.aspx It shows how to enable streaming to send and receive files. It uses http but it should be easy to switch to to use NetTCP by updating the config. Regards, David ...Show All

  • .NET Development Dataset Layout problem

    Sometimes I will load up the Dataset designer and my tableadapter will be showing totally blue for the columns and totally green for the queries. The tableadapters will be in the correct layout position though. I end up having to collapse and expand all of the tableadapters to get them back. Is their a quick fix for this You should report your problem to MS at https:// connect . microsoft .com/ Charles ...Show All

  • Visual Studio 2008 (Pre-release) Soap11 and Soap12 Service

    I am trying to develop a WCF service which must accept soap11 and soap12 messages. Basically, my service is a Dispatcher [ServiceContract] public interface IMyDispacher { [OperationContract] Message ProcessMessage(Message request); } I am using basicHttpBinding. What is suppposed to do to allow my service receive requests Soap11 and Soap12 Thanks in advance Svcconfigeditor showing soap12 is not supported any more for our custom binding,so i am assuming we need to have WS-Addressing for wsHttpBinding http://windowssdk.msdn.microsoft.com/en-us/library/system.servicemodel.channels.messageversion.aspx http://blogs.msdn.com/drnick/archive/2006/05/30/610519.aspx http://wind ...Show All

  • .NET Development AppDomain problem when starting a .NET 2.0 application using DDE

    I am experiencing a strange problem and was wondering if anyone could give me insight. First of all, has anything changed in .NET 2.0 with respect to how the shell starts applications using DDE (on double clicking of a file) Basically (I could provide more details if needed), my problem is that when I start my application by double clicking on a file associated with it, some type information seems to not be shared between AppDomains. More specifically, code in app domain A calls a function foo() which creates a value of type MyType in app domain B, then the code in A casts the return value to MyType. app domain B MyType a = foo() as MyType; When I start the application by double clicking on a file, the value of 'a' after the cast is nu ...Show All

  • Visual Studio Problem with Visual Studio 2005

    Hi, I installed Visual Studio 2005 and it was working perfect till yesterday. I installed another SW Development (DevCpp) to study the differences. The problem is that now when I try to create a project with Visual C++ it hangs I can’t do anything. I tried to uninstall both and reinstall Visual Studio 2005 only, but still same problem. The problem is only with Visual C++, if I try to create new project in any other language there is no problem. Anyone can help Thanks, regards I had the same annoying problem. I reinstalled it about a thousand times, uninstalled other programs i thought would have a problem with. Nothing worked. I finally found the answer. It has to do with a jscript.dll not being reg ...Show All

  • Visual Studio 2008 (Pre-release) DataTemplate vs. ControlTemplate

    Hello, I'm not so sure that I understand the difference between a DataTemplate and ControlTemplate. I realize that the DataTemplate renders a 'type' of data. But then why is ColumnHeaderTemplate defined using a DataTemplate resource Thanks Houman Wow I've never thought about it this way. But plain and simple, whenever you want a control template to be assigned dynamically, you need DataTemplates along with a DataTemplateSelector. For example, my grid control uses a datatemplate selector that looks at the type of cell (Text, Image, DropDown, CheckBox) and assigns the appropriate DataTemplate. In cases where the control will never change, just use a controltemplate and be done with it ...Show All

  • Software Development for Windows Vista Preview Handlers for Directories(File folders)

    Is it possible to register a Preview Handler shell-extension for directories(i.e File folders) so the registered preview handler renders the reading pane for all directories in Vista's Window Explorer   Thanks, RS   Yes, just as Windows registers a preview handler for things of type "txtfile" (of which .txt is one), you can register preview handlers for things of type "Folder" text previewer registration HKEY_CLASSES_ROOT\txtfile\ShellEx\{8895b1c6-b41f-4c1c-a562-0d564250836f} {Default} REG_SZ {1531d583-8375-4d3f-b5fb-d23bbd169f22} you would say HKEY_CLASSES_ROOT\Folder\ShellEx\{8895b1c6-b41f-4c1c-a562-0d564250836f} {Default} REG_SZ {Your Gui ...Show All

  • Visual C# using 2005 dlls in 2003

    I have a 2005 dll which i need to use it in my application in 2003. Is there any way to use it or i need to have 2003 dll. Thanks lili ...Show All

©2008 Software Development Network