Software Development Network Logo
  • Windows Live
  • VS Express Editions
  • .NET Development
  • Game Technologies
  • Windows Forms
  • Visual C#
  • Windows Vista
  • Visual J#
  • VS Team System
  • Smart Device
  • Visual FoxPro
  • Visual C++
  • Visual Basic
  • Architecture
  • SQL Server

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

pambear

Member List

Lugoff81
c# crack
Dave the Developer
am456
JohnyTho
marcvs
sigmasoft
Mojca
NightFlight
Muhammad Adel
AKINAL
Peter Mutli
Mike45
Yash.cse
Dave9999
MAX XUE
msingh
armadya
Mr. Arunkumar Khannur
_cyclops_
Only Title

pambear's Q&A profile

  • .NET Development Reduce the size of my soap messages.

    I have a soap tcp connection using WSE 3.0. I am not running through IIS. Here is the code for my server side: Microsoft.Web.Services3.Messaging. SoapReceivers .Add( new Microsoft.Web.Services3.Addressing. EndpointReference ( new System. Uri ( "soap.tcp://localhost:6565/cns" )), MyService); Here is the code for my client side: TestWS s = new TestWS (); s.GetSomeLunchCompleted += new GetSomeLunchCompletedEventHandler (s_GetSomeLunchCompleted); s.GetSomeLunchAsync(); When I trace the request with TcpTrace it responds back saying that it was sent 1656 bytes with the following packet: - ...Show All

  • Visual Studio Express Editions two problems - one is driving me nuts

    Ok, I posted this question in another forum but I thought I'd try here, too. I have an sql database with one table, I set the primary key on the table to ArticlesID. It is configured as the primary key. However, when I use a GridView control and try to add the sql to it, the Advanced SQL Generations are greyed out. I get the same result with a DetailsView thing. Any ideas as to what I'm doing wrong Do I need to change something in the web.config or the code or what Also, how do I import excel data into this table Welcome to the MSDN fora. I hope you find the answers to your questions. In the me ...Show All

  • Visual Studio Visual Studio 2003 debugger stops after start now that 2005 is installed

    Hi all I am having a very tough problem. Since the RTM version of 2005 was installed side by side on my dev machine, I can no longer debug anything. The debugger sometimes comes up, may stop on a break, but quickly stops, and the asp.net web page continues running, but the IDE is returned from a debug state to an edit state. I did a MDM reset as per another thread,mdm.exe /regsvr to no avail. This is killing my productivity, does anyone have any idea how to restore the debug functionality for 2003 Thanks ! Well, I'll post this here to save someone some time, it only took me 3+ hours to solve! Yikes, ...Show All

  • Software Development for Windows Vista closing after fullscreen video

    Ive got fullscreen video's playing quite nicely with the directx Video class. However, when the video finishes it just freezes on the last frame. I know I can bind to the Video.Ending delegate, but I dont know what to call to leave the fullscreen video mode. Thanks in advance   So what do you mean by finishing the video I asume that you mean destroying the whole application, so do you release the d3ddevice and d3d Also do you destroy your window  For example using : DestroyWindow(hWnd); PostQuitMessage(0); To make it easier, set windowed mode and enable dxdebugger, it will provide ...Show All

  • Visual Basic Variable Declare Error issue VB 2005

    I am having what I think might be a common problem. When upgrading my applications to VB 2005 from VB 2003, I have received a number of warnings regarding my declarations of local Strings without a default value assigned initially. Example of My earlier code: Dim tmpDriveType as Strin Warning treated as error : Variable 'tmpDriveType' is used before it has been assigned a value. A null reference exception could result at runtime. This is an easy fix by simply declaring the local variable as follows: Dim tmpDriveType as String = "" Not a problem, problem solved and understood. However, I have several code dec ...Show All

  • Visual Studio Express Editions Windows Media Player object

    Hello, I'm using the AxWindowsMediaPlayer-object to play sounds in VB.NET. Everything goes well, I can select sounds,play them, configure the balance, the volume, .., but I can't seem to figure out how to play the next sound in my listbox when the previous sound is over. I've tried .EndOfStream, but that doesn't seem to work. Anyone here who knows how to get this to work Any help would be appreciated. Grtz, Tom. Memory is fuzzy but the media player should have event that is triggered when a selection ends. You would then subscribe to this event by double clicking on it the property window and then get the next item in the listbox an ...Show All

  • Visual C# how can make an object of Class using reflection

      HI    i want to dynamically Run an Report (Active Report ).mean i have an .dll file which is have save in XML file (Namespace as well as Class name to) i want to Run that Report in my Web Form C# i need help Urgently reply me on ( ysmf_lhr@yahoo.com ) Mian Mahboob for simple creation (Parameterless constructor) TheType instance con = (TheType) Activator.CreateInstance(typeof(TheType)); ...Show All

  • .NET Development SslStream and SSL protocol not recognized (i think)

    i wrote this simple apps to connect to an IRC server but it doesn't work :( using System; using System.Collections.Generic; using System.Text; using System.Net; using System.IO; using System.Net.Security; using System.Net.Sockets; using System.Security.Cryptography.X509Certificates; namespace provaSSL { class Program { static void Main( string [] args) { try { string certName = "" ; TcpClient sslClient = new TcpClient (); sslClient.Connect( "irc.discostars.de" , 7000); SslStream sslStream = new SslStream (sslClient.GetStream(), false , CertificateValidationCallback); ss ...Show All

  • Visual Studio 2008 (Pre-release) XAML SplitView tool

    For some reason I can't find XAMLPad after installing NetFX Beta 2. I've been looking for SplitView online and can't find it. Can someone please point me in the right direction Thanks, -Alex Start Menu => All Programs => Microsoft Windows SDK => Tools => XAMLPad Or C:\Program Files\Microsoft SDKs\Windows\v1.0\Bin and search for XAMLPad :) HTH ...Show All

  • SQL Server Using AMO to manipulate cube calculations

    We have a cube with a bunch of calculated measures that were defined using BI Studio. I'm now looking at using AMO to manipulate the calculations (enumerate, modify, add, remove, etc). But what I see in the AMO object model is one MdxScript object with one Command object. That Command object has one very large Text property, with all of the calculated measure definitions munged together in one giant string. Not too easy to manipulate programmatically. Is there anything that I can do to make this easier to deal with Or is this just the nature of the beast with calculations, and I need to munge around in the giant script Is there some best pra ...Show All

  • SQL Server Passing connection managers to subpackages.

    Is there a recommended way to pass the connection managers from the parent package to the subpackages I also noticed that the subpackages can't reference the same configuration file as I get error messages when I try to build the solution. After I changed the configuration file for each subpackage it worked just fine. Did I miss something or is this intended to work this way thanks This falls into what I said: "The user must enter the password manually" If the user enters the password value in the wizard I must save that value into the configuration file because this is what the user want. Is not that we ...Show All

  • .NET Development My application loads lots of unknown assemblies!

    Hi, I'm developing an enterprise application and, when debuggin, I've noticed that both aspnet_wp.exe and my client application load lots of assemblies with autogenerated names, with no path nor extension. This is happening as I make calls to the web server. What can be the cause Thanks in advance Lots of stuff gets compiled dynamically in asp.net. Pages (.aspx), controls (.ascx), web services (.asmx), http handlers (.ashx) etc. ...Show All

  • Windows Forms Deployment error on windows 2000

    Hi, Thinking the error possibility can be: ========================= IS THERE SOME PROBLEM WITH THE ODBC CONNECTION IN WIN 2000 - I WONDER WHAT Scenario: ======== i have a windows forms application developed, now i have created a deployment setup project for it. it includes the project output and dependencies and the .rpt files.  I am using odbc connection string. So i ...Show All

  • Windows Forms Problem when creating custom control

    Hello everyone.  This is my first post here.  I just joined today. I created a custom windows control with a Tree View inside of it.  On the load event of the control, I fill it with categories structured as a tree from a MsSql database.  I created also a OnClick event for the control, and pass it to the OnClick event of the Tree View.  Then I use the control in a web form like a directory structure, so when the user clicks on one of the nodes of the Tree View, it gets data related to the node selected and then it displays the data somewhere else on the form.  The problem is that when I use the Click event and c ...Show All

  • .NET Development Does WseWsdl3.exe support a parameter file?

    I was under the impression that the wsewsdl3.exe tool supports the same parameters/switches that wsdl.exe does. However, I can't seem to get WseWsdl3.exe to use a parameter file. Is there some way to use a parameter file with WseWsdl3.exe Thanks, Erick Hi Erick, I could be wrong, but from the documentation for wsewsdl3.exe it doesn't look like it supports a parameters file: http://msdn.microsoft.com/library/default.asp url=/library/en-us/wse3.0/html/fbefe453-3851-439b-9c10-fb036b59ff81.asp Sorry! Daniel Roth ...Show All

©2008 Software Development Network