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

Software Development Network >> New Man's Q&A profile

New Man

Member List

raducu
GrooveBox
ronmurp
Transco901
vdovjak
Joseph Creech
jproberts
odders
Peter Senescu
Kai Fransson
jhnnym
DaleJ
oldguy1166
4986
lbsjs
EBN
soccerdad
Dave Wesst
Jean Olbrechts
MickeyP
Only Title

New Man's Q&A profile

  • SQL Server Aggregation Migration

    Definitions of aggregations objects in AS2K5 are organized in AggregationsDesign groups so as to be able to assign a unique definition to several partitions within a Measure Group. When Migration Wizard migrate aggregations, if two AS2K aggr sets from two different partitions of the same cube have exactly the same definition but are ordered in a different way, the Migration Wizard process will create two different AggregationsDesign with different name, duplicating xmla descriptions. So It's better to order all the same aggr.definitions by the same criteria in every partition of a cube before migrating it. It can be done by using th ...Show All

  • Windows Forms DataGridViewComboBoxColumn not displaying stored value

    Hello, I am having a lot of trouble with the datagridview. My datagridview holds data of the child table. It does populate fine. However the problem comes when I want to add a combobox to the datagrid. Toward the end of the code below I add a combobox and bind it's source to the appropriate look up table. When I run the application, the column is added and it does have the values of the look up table, however it does not show the currently selected value in the database. It comes up blank. Also, I use the following statement: DgvCalls.AutoGenerateColumns = false ; My understanding is that this should not display any columns unl ...Show All

  • Visual C# How can I dispose the main form without quiting the application?

    Hello, I have a splash screen as my main form: /// <summary> /// The main entry point for the application. /// </summary> [ STAThread ] static void Main() { Application .EnableVisualStyles(); Application .SetCompatibleTextRenderingDefault( false ); Application .Run( new SplashForm ()); } And I want to dispose it after loading my main form. How can do that When I do this.Dispose() the whole application is closing! TIA. A great and prize winning article about creating a Splashscreen can be found at code project, here . You can use this example Splash Screen or ...Show All

  • Visual C++ simle form in c++

    CODE bool InitWindowApp(HINSTANCE instanceHandle, int Show); int Run(); LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR pCmdLine, int nShowCmd) { if(!InitWindowApp(hInstance, nShowCmd)) { ::MessageBox(0, "Failed to create Window!", "Fail", MB_OK); return 0; } } bool InitWindowApp(HINSTANCE instanceHandle, int Show) { WNDCLASS wc; wc.style = CS_HREDRAW | CS_VREDRAW; wc.lpfnWndProc = WndProc; wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = instanceHandle; wc.hIcon = ::LoadIcon(0, IDI_APPLICATION); wc ...Show All

  • Software Development for Windows Vista Missing Service Does Not Throw Exception

    I am using InvokeMethod to call into a DataExchangeService . However, if the service was not added to the WorkflowRuntime before the activity is executed the workflow hangs and the process consumes 99% of the CPU. WorkflowRuntime. ExceptionNotHandled is not fired. Jared, This is a bug in the InvokeMethod which does not check for the missing service until execution time. The check should be made while initializing. In either case, the WorkflowRuntime. ExceptionNotHandled would not be thrown if the service is missing. This is thrown only when the exception is not related to the workflow thread and is throw ...Show All

  • Smart Device Development SystemParametersInfo in Mobile 2003

    Hi alls, I try to use SystemParametersInfo for obtain some informations from my PPC 2003 like SPI_GETBATTERYIDLETIMEOUT and SPI_GETEXTERNALIDLETIMEOUT. Is it normale that I have 0 in pvParam Thank Hi , This forum is primarily monitored by Visual Studio for devices group. Please check this link for more appropriate forums for this type of queries. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=286724&SiteID=1 Thanks Srikanth Bogadapati . ...Show All

  • Visual Studio 2008 (Pre-release) Tooltip background question

    Hello, How can I set the background of a tool tip to transparent I tried the following but the background is black - which results in an ugly tooltip. (Sorry for the basic question, I am newbie at XAML) Thank you <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" > <Page.Resources> <Style TargetType ="{x:Type ToolTip}" x:Key="{x:Type ToolTip}"> <Setter Property="Background" Value="Transparent"/> <Setter Property ="Template"> <Setter.Value> < ...Show All

  • Windows Forms Accessing the MDI Parent form controls from child forms

    Hi... I hv created the MDI application in which parent form contians some ToolStrip buttons. I will call the child forms through menus. I have a problem in enabling the ToolStrip buttons in the parent form based on the button clicks of the child forms. On the button click of the menu item which displays the child form, i have written childForm.MdiParent = this(parent form). Can u help me in solving this issue Could you describe in more details what do you mean by I have a problem in enabling the ToolStrip buttons in the parent form based on the button clicks of the child forms. Do you have some butt ...Show All

  • Visual C# Infinite integer

    Hi, my application is using some integers which is too big for int32 and even int64, can anybody tell me how to create infinite integer variable that can accept very large numbers Thanks, the J# runtime library has an implementation of BigInteger and BigDecimal with a very rich API. here's more info on that: http://msdn.microsoft.com/msdnmag/issues/05/12/NETMatters/default.aspx Imran. ...Show All

  • .NET Development unmanaged dll, struct runtime issues

    Hey I was wondering if any one could help me, I recieve the following error message in c# express: FatalExecutionEngineError was detected Message: The runtime has encountered a fatal error. The address of the error was at 0x79ef067e, on thread 0xe30. The error code is 0xc0000005. This error may be a bug in the CLR or in the unsafe or non-verifiable portions of user code. Common sources of this bug include user marshaling errors for COM-interop or PInvoke, which may corrupt the stack. What Im doing is calling the GetWindowInfo() from the unmanaged "user32.dll", which returns a WINDOWINFO struct. I have created the struc ...Show All

  • .NET Development looking for a good XML schema wrapper tool/code generator

    We extensively use XML schema in our application, exchanging XML instances between the client and the server. We create typed dataset wrappers on top of the schema to speed up the development. These wrappers are just used internally and are not exchanged between the system components. Some features enabled using the typed dataset as a wrapper are missingin from the classes generated by XSD.exe so we dont' use it. On the other hand dataset aren't so good at managing schemas with imported namespace, any and so on. Is there any third party tool that is able to create rich and complete wrappers around XSD schemas We are ...Show All

  • Visual Basic Diagonal Lines Issue

    Hi All, I have been facing this problem since a long time. At runtime in a VB application, I get some system errors and the entire screen will get diagonal lines. For eg I have one activeX control from where i am displaying a form . In that form I am getting one runtime error due to type mismatch error ( error no 13 ) . Now i have error handler in both the places : the Subroutine from where the form is displayed and also the function in the form itself where the error occurs . But still we are getting the runtime err msg and Diagonal lines are coming in the calling activeX control . Please keep me posted if any one knows about it. ...Show All

  • Visual Basic Disable any application via time out

    Is there a simple way to make a program perform a function based on the length of time the application has been installed (Time Trial applications that stop working after 30 days for example). I can make my application check for a licensing/registration setting, but i don't know how to make it compare the current date/time with the install date/time and act accordingly. I'm just starting to work on a system for having trial versions of applications, and i'm also attempting to create my own product activation system (server/client). I'm starting with what i think is the easy part first :) Any help appreciated. Cheers Mc ...Show All

  • Visual Studio Express Editions Newbie General Questions & Error on Non-Dev Machines

    Hello, I've just started programming C++ as of today, so yes I am a newbie, but I do have some experience in Java and GML so hopefully it will come in handy. First off I'd like to know if there is some kind of function list for standard C++ Libraries.. For Java and GML their is an obvious list of all the functions and parameters easily available to all programmers. From what I can see, even MSDN doesn't offer something like this. Secondly whenever I use, lets say, #include <windows.h> I get an error similar to: Error 1 fatal error C1083: Cannot open include file: 'windows.h': No such file or directory c:\documents and settings\ ...Show All

  • Visual Studio Team System Merged directories: How to? Impossible?

    Hello experts, I have a problem here which I can't quite get around with Team System: For various products, we have HTML files and some form files, of which some are exclusive for a product, and others are shared between several products. Using VSS, we used to first "get" all the shared content into a directory in the workspace, and then "get" all the product specific content into that same directory. VSS usually managed to remember the paths for both client paths, making it possible to check-out and -in using the VSS client, in that merged directory. If you try to do the same using the TS Client, it will cry out ...Show All

©2008 Software Development Network