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

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

aabes

Member List

Marc Rush
MarekP
Reta
mountainmikey
annag
VBnEWb
tbrauer
Roeland Jimenez
LDesmons
kokolulogos
chamm3r
radh
Ju Wu
Sathianantha Thilagar T
budc
Tallier
dioptre
JHibbins
hyofun
gisgeezer
Only Title

aabes's Q&A profile

  • Visual Studio Express Editions C#: Some equivalent to JavaDoc?

    Hi. I'm a Java developer and I'm in the process of learning .net. There is some kind of documentation generator like JavaDoc Regards. http://ndoc.sourceforge.net/ There are some JavaDoc-like templates, too ...Show All

  • Windows Forms consuming C++ API from .net

    Is this difficult to consume C++ API from VB.net   Are there any datatypes in C++ that are not supported in VB.net but are supported in C#.    C++ api's aren't difficult to consume.  As long as it's a .dll, you don't have to create wrappers by hand, and whatever the datatypes can't convert easily, I believe .net will just&nb ...Show All

  • Smart Device Development How to quickly display the splash form

    Hi, At the moment, I am creating a splash form for my application by referring to http://blogs.msdn.com/davidklinems/archive/2005/08/17/452804.aspx The problem I had with that method is ... the splash form is not coming out instantly! It takes about 8 seconds to see the first screen coming out. public MainForm() { #region initialize splash form this.SplashForm = new BannerForm(); //BannerForm is splash form SplashForm.Parent = this; SplashForm.Show(); SplashForm.Focus(); Application.DoEvents(); //From my understanding, isn't the splash form should be displayed here this.Enabled = false; #endregion InitializeComponent(); } public Mai ...Show All

  • Visual C++ Attemp to use MSIL code from this assembly...

    I have a C/WIN32 program that I have "transformed" into "C++" and build with /CLR. Everything compiled ok - exept from some warning about: warning LNK4248: unresolved typeref token (01000011) for '_IMAGELIST'; image may not run warning LNK4248: unresolved typeref token (01000011) for '_TREEITEM'; image may not run But when I run my program I got the error : "Attemp to use MSIL code from this assembly during native code initialization. This indicates a bug in your application. It is most likely the result og calling an MSIL-compiled (/clr) function from a native constructor or from DLLMain" Does anyone have any tip what may be wrong ...Show All

  • Windows Forms Custom Control issue

    Hi Everyone! I’ve a tricky question. I'm creating a new control, this new control will inherits "UserControl" or maybe "Panel". And in the new class i will have two others private control. a textBox and a Combobox. Now to access the Combobox private member I’ll have to create a property that will give accessibility to this control and the same thing for the TextBox. Then to point to the Combobox inside the new class I’ll have to write something like. Me.MyNewControlClass.MyCombobox.SelectedValue = AValue to access the Combobox and Me.MyNewControlClass.MyTextBox.Text = "Hello!" to access the TextBox. What I’ll like to have is a way to point t ...Show All

  • Windows Forms Control.DataBindings

    I've never really had a use for DataBinding to Field values to Controls, but now that I am, I have a question. When you add a Binding to the DataBindings Property of a Control, say the Text Property of a TextBox, it nicely displays the value for you...cool.  When I change the Text Property of that TextBox though, the underlying Field in my&nb ...Show All

  • Visual Studio Tools for Office Word Template crash

    I have a Word template project that can add custom controls to the document (something like WordDynamicControls example). I am able to open my template and save as a doc file. But it is not possible to save doc file after that because Word crashes. Could someone help me Pleas provide more specifics about your crash; ideally, source code that reproduces it. Thanks, iouri ...Show All

  • SQL Server SSIS Package Configurations Stored in SQL Server Table

    I have two SSIS projects each with different packages. I have setup the packages with configurations stored in a SQL Server table in MSDB. When I create the configuration on the second project it overwrites all of the first projects configurations. Is there a way to to get two different project configurations stored in the same SQL Server table Any help would be greatly appreciated. Thanks! I'm just guessing: What happens if you don't check any items from the package when you configure the 2nd package If it does not help, the standard way would be to temporarily rename the config-table while configuring the ...Show All

  • Visual C++ MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup

    Hi Justin! i am completely new to this and have to learn the language fairly rapidly, got myself a decent book, but when i try and compile a simple hello world program i get the error:      Linking...    MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function _WinMainCRTStartup    Debug\dont know.exe : fatal error LNK1120: 1 unresolved externals    Build log was saved at "file://c:\Documents and Settings\Justin Pyfrom\My Documents\Visual Studio 2005\Projects\dont know\dont know\Debug\BuildLog.h ...Show All

  • Visual Basic SAVING REMOTING NETWORK POINTER

    I have built a chat server using a singleton remoting structure, but now i need to save the list of users that log into that to re-start the server and reconect to this users I have hashtable with the user name and his machines's remoting pointer the name saves ok, but the pointer throw a huge exception: "runtime error: " Remoting cannot find field __identity on type System. MarshalByRefObject ."" how come it cannot be converted to binary, serialized or saved in a file here is the code Public Class ServerProcess Inherits MarshalByRefObject Implements IAlertServer ''USES A HASH FOR ...Show All

  • .NET Development bug in Int32.Parse

    In Visual Studio 2005, the following throws a FormatException and it definitely shouldn't.  The same code works fine in Visual Studio 2003. This is the version that I am seeing the problem, running on XP:     Microsoft Visual Studio 2005     Version 8.0.50727.42  (RTM.050727-4200)     Microsoft .NET Framework     Version 2.0.50727     Installed Edition: Professional int x = 0; x = Int32.Parse("0")        // throws FormatException x = Int32.Parse("00")       // works fine x = Int32.Parse("000") & ...Show All

  • SQL Server AdventureWorks DB sample

    OK, I've installed SQL 2k5, and I'm sure I selected Advanced>Samples however I cannot see the AdventureWorks database attached. I have tried opening SQL Server manager>right click on databases>Attach>Add but this only brings up a Folder explorer, not a file explorer. I can navigate to where the AdventureWorks samples are but SQL Server manager is not able to attach them because it is a Folder explore. also, I have the samples in C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data but I am only able to browse to C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\ How then can I attach the database   &n ...Show All

  • Windows Forms Runtime resize handles

    > Hi ... > > In my application, the user can drag and drop objects from the toolbox to > the main working area (just like in Visual Studio). Each of these objects is > actually an image that is displayed in the work area using a picturebox. > > Now I want the use to be able to resize and move these images. How do I make > the&nb ...Show All

  • Smart Device Development Microsoft.CompactFramework.Design.Data

    Does enyone know what assembly shoud I reference for the clases in the "Microsoft.CompactFramework.Design.Data" namespace I'm interested in this because I wanted to extend the typed dataset clases generated for compact framework projects and used System.Data.Design.TypedDatasetGenerator class, but I found out that the code is incompatible with CF 2.0 . So I'm now considering to use the same generator that VS 2005 uses for Typed DataSets for CF Tks P.S. I'm using the VSIP SDK for the "Custom Tool" that extends the standard typed datasets Hi, The assembly is in <VS 8 Insta ...Show All

  • Visual C++ how to terminate threads?

    I create one thread function. And started that thread using AfxbeginThread() function, I used AfxEndThread() for stopping thread.........but it doesnt work out. Actually what i do by starting thread Is monitor the changes in the selected folder After ending the thread monitoring could be stopped. but it didnt stopped monitoring........... for stopping the what will i do Marius Bancila wrote: See this FAQ: http://www.codeguru.com/forum/showthread.php t=305166 That provides a decent example of using synchronization objects to ask a thread to terminate. But, it's use of another sync. ob ...Show All

©2008 Software Development Network