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

Software Development Network >> Mateusz www.Kierepka.pl's Q&A profile

Mateusz www.Kierepka.pl

Member List

Mike D
dgm2
Nectuss
msbuilddude
edison_torres
bsmith
Hsien-Chun
Pete Smith
Chad Ludwig
pecket
Kerad
yassir
jake222
PeterLlwr
Mike Mathis
ultrabit79
Che3324
Matt_chrs
ViewDu
Caddre
Only Title

Mateusz www.Kierepka.pl's Q&A profile

  • Microsoft ISV Community Center Forums Independent. Sure, but at any price?

    I just posted some thoughts on technology independence in ISV solutions on my blog that I would love to hear the community view on... Hello Michel, I guess we have to identify the term 'platform' before to talk about the independence. Is the platform the SO Database Application server Web Server Framework Business Communication channel My experience says that the 'real' independence doesn't exists at all. We can try to have more independence as possible (for example to be resilent to the platform version), but we can't be really independent. If we see Java, we can say that we have SO independence, database independence, and ...Show All

  • Smart Device Development how to get icon on Windows Mobil 5.0 Platform

    Dear All: Is anyone know that how to get the running programs Icon My case is that I use the Enumwindows API , so that I can get the Handle of the running programs window! I can get some running programs Icon, by using the below method SendMessage(g_hWndArray[k],WM_GETICON,ICON_SMALL,NULL); & GetClassLong(g_hWndArray[k],GCL_HICON); But unfortunately , it can't get ALL Icon of running programs. I had tried the SHGetFileInfo API, but the only infomation I know is that the running programs Handle.How do I use Handle to get the path of running programs for the SHGetFileInfo API Or does anyone know the better method to get the ...Show All

  • .NET Development Connecting to AXIS web service with .NET and disconnected and unvalidated WSDL

    I need some help solving a complex problem.  My experience with web services has been with ASMX and .NET. I was given the task of writing a Windows Application client to connect to a web service on an Apache AXIS server.  However, the WSDL is not hosted on the server, but rather provided to me separately. Now, I am not certain that the WSDL is valid in the first place, and even less certain whether it is valid for .NET. But when I try to add the web reference, the error I get is the following: "Custom tool error: Unable to import WebService/Schema.  Unable to import binding 'somename' from namespace ...Show All

  • Visual Basic datagridview

      hello! What is the code for can get the current value of a row in any datagridview if the user click into the row, I use this with datagrid, but have problems for understand and translate to datagridview Private Sub DataGridView1_CellMouseUp( ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles DataGridView1.CellMouseUp Dim pt = New Point(e.X, e.Y) Dim hti As DataGridView.HitTestInfo = DataGridView1.HitTest(pt) If hti.Type = DataGrid.HitTestType.Cell Then DataGridView1.CurrentCell = New DataGridCell(hti.Row, hti.Column) dataGrid1 ...Show All

  • Windows Live Developer Forums Bonus Challenge

    I have read the e-mail about Bonus Challenge at 18:00. Decided to participate - and to make small, but useful (I hope ) app. At 24:00 I have completed the work. During this 6 hours I had time to drive from work to home, to have dinner, to read the last news, and of course to write code and test it. As a result: 15575 characters of code and 5 images. Extreme programming At 00:30 I have submitted it. BTW, question to admin - I hope it was submitted succesfully Web page said that all right, but still it will be better to receive confirmation to e-mail... The e-mail that I was used during submission is a-vas[at]hotmail.com The winners fo ...Show All

  • Visual Studio Team System What is Dynamic Code Analyzer

    A very basic question and could not find answer, or maybe I missed: What is the real tool or utility meaning "Dynamic Code Analyzer " Discussed with our developers, and no solution yet. In VSTS document, I always saw "Code Analyzer" which I believed was for FxCop and "Static Code Analyzer." I might be wrong, please just give a comment. Thanks! Here are some musings on the topic I put up on my blog a while ago. In VS 2005 you can probably use the term "dynamic code analysis" and the profiler interchangeably and not have any problems. http://blogs.msdn.com ...Show All

  • Visual C++ Support for dual core and dual CPU

    When does Microsoft plan to add support for dual core and dual cpu when compiling C++ code I was asking the same question 8 years ao when I got my first dual CPU machine. Did not get any answer. Distributed compilation like Incredibuild would also be nice to have. Regards Lars Schouw Ted. wrote: ok this is killing me, take a look at the following file for another clue: \program files\microsoft visual studio 8\vc\crt\src\makefile.sub now guys, you are looking for a compiler option that will enable no-hassle multiple CPU support. Does it exist Well, according ...Show All

  • Windows Forms Break point problem

    I have a main form with menu control on it. I am opening various forms on click of different menu items. Below is one the procedure I am using. I am running my app in Debug mode.  Private Sub mnuSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuSearch.Click      Dim frm As New frmPlanMaintain      frm.ShowDia ...Show All

  • Windows Forms Discard carriage return in multiline textbox

    Hi, I have a multiline textbox.I assign the value entered in this textbox to a regular textbox.However the carriage returns ascii value also gets copied to this textbox.How do i discard the carriage return and just copy the remaining text. Regards, supriya text = text.Replace('\r', ' ').Replace('\n', ' ') will replace all instances of a CR or LR with a space.  Simply removing them would probably not give you what you want since most people use a CRLF as a separator you should at least put a space in otherwise: This is a multiline string. would become: This is a multilinestring. If it is possible that \r\n is also present then I ...Show All

  • Windows Forms Are Web Services single-threaded?

    I realize this may be a stupid question, but I've been reading around and I still can't get a handle on this....  Does a web service handle strictly one request at a time   For example, a web service has two web methods implemented as functions, GetAnimal and Get Vegetable.  There are several applications running that call the two methods.  If&nbs ...Show All

  • Windows Forms Application Failed - Invalid Manifest

    This is the first time I have actually used the Publish... function in VS .NET 2005 Beta 2, so maybe I am missing something obvious... I do the publish, and everything comes out fine, except for two warnings: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets : warning : Could not find resources for culture 'en-US'. Using culture 'en' instead. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets : warning : Could not match culture 'en-US' for item '.NET Framework 2.0 Beta'. Using culture 'en' instead. These actually seem pretty harmless though... I then copy the entire folder the solution was publis ...Show All

  • Windows Forms MaskedTextBox and the Decimal Type

    Hello All, I'm hoping someone can help me with this one. I have a model object that represents a stock part. This part has a price. The price is stored on the database as type money. The price on the object is stored as type decimal. I have a binding source that has this object as it's datasource and it is bound to serveral controls on the stock part view. The bound control for the price is a MaskedTextBox. When I input a price, say 2.35, and tab out of the control it is stored properly in the object but the bound control displays 235.__ I have tried the following masks, none of which work... 999.00 ###.00 000.00 Can someone clue ...Show All

  • Visual C# Can we call Derived Class method which is not overrided, using Base class type variable...?

    How do we call a Derived Class method which is not overrided, using Base class type variable... Example: Class A { private string str="string from Class A"; public void MethodA()   {          Console.WriteLine(str);   } } Class B:A { private string str="string from Class B"; public void MethodB()   {          Console.WriteLine(str);   } } Class Client { A a=new B(); a.MethodA(); // How to call MethodB() using variable a a.MethodB();   //like this } ...Show All

  • Visual C++ Adding as a Reference changed some function definitions ??

    Hello Everyone, I have an .exe which is a COM component, I used it in WIN 32 it worked fine as expected. I used the same exe as refrence in .NET and some function definitions got changes...For Example Originally in WIN 32 the function looked something like this virtual HRESULT __stdcall raw_OnChallenge ( long attemptsRemaining, unsigned char password[20]) IN .NET the object browser shows something like this.... System.Void OnChallenge( System.Int32 attemptsRemaining , System.Byte [] password ) To get the results correct, this function is suppose to return S_OK, which I can't do as (void).... Can someone please exp ...Show All

  • SQL Server need help on use the watch windows

    All, I cannot use the watch window while debugging. I want to use it to look at the runtime variable values. The watch window is blank when I click on it, could someone please tell me where and how to configure it Many thanks An example: Place a breakpoint on a line of code that will be executed in your program Start a project with debugging, and run your program such that it executes the line of code with a breakpoint set When on the breakpoint line, highlight a variable, right-click, and choose "Add Watch". The variable appears in the Watch Window, with its value di ...Show All

©2008 Software Development Network