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

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

Bapa

Member List

Kalos
Henrik Goldman
Derek Smyth
ag1206
msaeedf
mattdawg
Terrence Chan
Peter McEvoy
Blackwood
Ion101
Juan Ignacio Gelos
MarcNelson
pajamo
sydes141
Chandu Sujay
leorb
smalljoe
Dhanya Ajith
user__2006
FerdBirfel
Only Title

Bapa's Q&A profile

  • Internet Explorer Development Solve the printing problem in IE7 when using the iframe

    hi all... i fixed the problem of printing in IE6.0 , IE7.0 and all browser like firefox, mac etc... when the thing to print out the contents of the iframe. IE7 Printing problem in Iframe: IE7 automatically shrinks the content down to letter sized paper. Now i have solution: this code using when you want to print a content in the iframe in broswer IE7 with without shirnks the content. // an application that loads a page into an Iframe, and a button outside of the iframe first of all : step one: - wirte a print function: example: <script language="JavaScript"> function printPage() { window.parent.inner.focus(); //inner the id of iframe..... window.print() } </script> calling ...Show All

  • Windows Forms How can I do MS Charts ?

    My work need to statistic by charts but I don't know how to use it Please give me some lessons about MS charts. Thanks in advance ! AxMSChart20Lib.AxMSChart m_objChart = new AxMSChart20Lib.AxMSChart(); this.Controls.Add(m_objChart); m_objChart.Title.Text = "My first chart"; ...Show All

  • Visual Studio Team System Results per test-flow instead of test-case?

    Hello, Is it possible to have several test cases pointing to the same test document Today if I create one test case it automaticly creates a test document linked to it - but I want to have several test-cases linked to the same source document. The reason for this is that we have many test-flows inside our test-cases and we want to report our progress per test-flow and not per test-case (as it is per default). Today if we have 10 test-flows in a test-case, and lets say that 9 out of 10 test-flows was succesfully tested but 1 test-flow failed, then the test result for the whole test-case will say "Failed" - which is kind of missleading because it doesn't say anything about our real progress. So we want to show our progress per t ...Show All

  • Visual Studio Team System Can the default value for a PlainText field have a carriage return or line feed

    I'm trying to modify the description field to have a default value that looks something like this ( italics below ): Summary: Supporting Information: Steps to duplicate: You'll notice that the default value has information on different lines. I've tried using a \n, but I just get an error trying to import the xml. Any idea how to get a line break in as a part of the default value One thought is that I could change System.Description to an HTML field instead of a PlainText field. Then I could probably use an HTML break. If it's not possibly to have line breaks in a PlainText field, what do you think the impact (or if it's even possible to change a System field) to an HTML field is Thanks, --Dave Hell ...Show All

  • Visual Studio 2008 (Pre-release) How to enable tracing in code without using configuration?

    Hi All, I am trying to enable MessageLogging on my client without using a configuration file. In my situation i dont have an configuration available for my client. I tried adding to following code to my client but no go... i am probably missing something very obvious... XmlWriterTraceListener l = new XmlWriterTraceListener ( @"C:\wcf.log" , "ServiceModelMessageLoggingListener" ); l.TraceOutputOptions = TraceOptions .DateTime; TraceSource s = new TraceSource ( "System.ServiceModel.MessageLogging" , SourceLevels .Warning | SourceLevels .ActivityTracing); s.Listeners.Add(l); Can anyone point me in the right direction Hi Mohamma ...Show All

  • System Center where i can find it to download?

    i'm looking for SCCP 2006..i'm msdn subscriber..but i can't find it for download... Any help .. This is worrying - it's not supposed to be that hard to find! I've just confirmed that this works from here: On the Subscription Management Page, click on Subscriber Downloads. On Subscriber Downloads, go to the tree control in the left side of the page. Expand the "Servers" node and scroll down. You should see System Center Capacity Planner 2006 (English) as an option. If any MSDN subscriber can't see SCCP on their Subscriber Downloads page, please email me at jonathan_hardwick@hotmail.com with your country, and your MSDN subscription type (e.g. "VST - Suite" - you ...Show All

  • Visual C++ how to get rid of 0xc0150002 error?

    Hi all, I have this 0xC0150002 error when I tried to run my client.exe. I am making use of log4cplus.dll and have put it in system32 folder. What else must I do to make my program run I have been trying to run my program in a different pc. My client program was created using VS2005 with the log4cplus.dll in system32 and the include headerfiles of log4cplus placed in VS8/Common7/Include folder. It compiled nicely. I have tried using the depends.exe and have already ensured that it can find all the dlls. But i still have that error. I do have one warning from the depends.exe though - At least 1 module has an unresolved import due to a missing export function in a delay-load dependent module. Which mea ...Show All

  • Visual Studio How to create a window just like "Go To" Command window

    In Vs.Net 2005, I can implement CreateToolWindow2 create new window with User Control and can not with the Window Form type.But i need create the new window just like "Go To"(in Edit menu) Command window.so ,which function or interface can help me to implement Thanks Modeless windows are created as toolwindows calling the CreateToolwindow function with a .NET usercontrol, but modal windows like the GoTo Line window can be created as Windows Forms and showing them modally. ...Show All

  • .NET Development ResponseElementName is ignored.

    I'm trying to call a webservice using WSE 3.0, but I'm generating my own proxy code (by extending Microsoft.Web.Services3.WebServicesClientProtocol). By default, this requires me to use the names of operations in the WSDL as the names of the methods in my generated proxy class. I do not want this (because I already have methods with these names defined for other purposes). The obvious approach is to use the SoapRpcMethodAttribute annotation to specify the name used in the request and the response. For the request this works fine (I see at the server that my request comes in with the appropriate operation name), but for the response the annotation does not seem to have any effect at all. I can enter something completely random and d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. GetDimensions for Buffer?

    Since GetDimensions is not available for buffers, is there a way to know the size of a buffer in a shader Thanks.   ...Show All

  • Visual Basic Convert VB struct to LPBYTE

    Hello evrebody. I'm trying to use the Setjob API within my vb.net project but I don't reach to pass my JOB_INFO structure to the API. So my question is : How to convert a VB structure to a LPBYTE I use this declaration : Public Declare Auto Function SetJob Lib "winspool.drv" ( ByVal hPrinter As IntPtr, ByVal JobId As Int32, ByVal Level As Int32, ByVal pJob As IntPtr, ByVal Command As Int32) As Boolean and Structure JOB_INFO_2 Public PrinterJobId As Integer Public pPrinterName As Integer Public PrinterName As Integer Public PrinterUserName As Integer Public PrinterDocument As Integer Public PrinterNotifyName As Integer Public PrinterDatatype As Integer Publi ...Show All

  • Windows Forms C++ Drag and Drop

    I know there have been lots of questions asked about this, but I can't see any that answer my particular one. I have pictureboxes that I want to be able to move round a panel freely - they contain bmps. I have implemented the dragdrop events of the panel like so: private: System::Void pnlDragDrop_DragDrop(System::Object^ sender, System::Windows::Forms::DragEventArgs^ e) { PictureBox^ picPole = safe_cast <PictureBox^> (sender); picPole->SetBounds(posx, posy, picPole->Width, picPole->Height); } private: System::Void pnlDragDrop_DragEnter(System::Object^ sender, System::Windows::Forms::DragEventArgs^ e) { e->Effect = DragDropEffects::Move; } private: System::Void pnlDragDrop_DragOver(System::Object^ sender, System: ...Show All

  • SQL Server Matrix-last column not subtotal of row

    Destination Country Valid Mail Austria Belgium Austria 1.9 1.7 1 23 23 Belgium 1.7 9.7 2 23 23 Valid Mail 1 2 3 hi, i have some question for matrix: how to display 'Valid Mail' which is not subtotal for each row. how to display 'Valid Mail' which is not subtotal for each column. if reporting services do not have this function, what should i do in order to get the same result using reporting services  Thanks Best Regards, Penny         Hi It seems to me that you may have a similar problem to the one i had. Please see the following it ...Show All

  • Visual C++ Simulating Left Mouse Button Click

    Hi, At the moment, I am running into a problem which is this: Every time I right-click on a TreeView item in my application, the selected item remains the item prior to right-clicking rather than changing to the right-clicked item. While this isn't exactly a BUG, it is quite an inconvenience. The most obvious solution to the problem, to me, is to simulate a left-button click in the right-click NM_RCLICK event that will in turn select the item prior to any further actions. Is there a better way to accomplish this If not, how can the left-click simulation be accomplished Thanks in advanced. ---Dan To simulate mouse clicks, you can use mouse_event and SendInput. However, I think it will be better to use ...Show All

  • SQL Server aspnet_regsqlcache tool not found in my system

    hi i am going to install the aspnet_regsqlcache tool in my system to create the notification tables for my database. while i am istalling in the .net framework command prompt, it tells like this, "'aspnet_regsqlcache' is not recognized as an internal or external command" what is the problem in my system...please any one help to solve this issues.. thanks in advance The utility is now called aspnet_regsql.exe. It can be found here C:\WINDOWS\Microsoft.Net\Framework\v2.0.50727. This was also discussed on the Wrox forum (in case you read about this in a book). http://p2p.wrox.com/TopicIndex/21996.htm Paul A. Mestemaker II Program Manager Microsoft SQL Server Manageability http://blogs.msdn.com/sqlrem/ ...Show All

©2008 Software Development Network