Search results for query: *

  1. S

    DirectCasting MDIChild Forms

    Just a little update.. Using interfaces solves this problem easily :) Here's my updated code 'Mainfrm' If Not Me.ActiveMdiChild Is Nothing Then DirectCast(Me.ActiveMdiChild, ITheme).GetTheme() End If 'Module1 Public Interface ITheme Sub...
  2. S

    DirectCasting MDIChild Forms

    Hi guys, i'm wondering if anyone knows any other better way of doing this.. here's what i have. Mainform - with a toolbar, each toolbar function is based on the currentactive MDIchild form. Here's my current code for the clicking toolbar event. Private Sub tlbMainMenu_ButtonClick(ByVal...
  3. S

    SQL Server CE RDA

    Hi, i've programmed a software that uses the remote data access (RDA) feature. It works fine on my local computer with MSSQL and SQL server CE installed Now i'm trying to use a online host to sync with through my software. Problem is i'm looking for a host that has the feature SQL server CE...
  4. S

    Ce.NET Registry

    I don't think CE has a regedit software.. not that i know off. what i use is OpenNETCF.Win32 Do a search on google for this.
  5. S

    VB.NET and CE .NET 4.1 computer

    The first version of Visual Studio .net is 2002 if i'm not wrong. I got my acedamic version (2002) That will not work with CE development stuff. Converting is very hard too, i highly recommend rewriting your program if possible. VS.net 2003 (Visual Studio.net 2003) comes with CE dev capability...
Back
Top