microsoft.public.dotnet.framework.compactframework
  Home FAQ Contact Sign in
microsoft.public.dotnet.framework.compactframework only
 
Advanced search
July 2008
motuwethfrsasuw
 123456 27
78910111213 28
14151617181920 29
21222324252627 30
28293031    31
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
... framework.compactframework Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Mouse events in CF controls (ListView, TreeView, etc...)         


Author: batvanio
Date: Jul 15, 2008 11:40

Hi,

I was exploring the possibility to implement dragging items in a
TreeView (or a ListView) control, for which I was planning to use the
MouseDown, MouseUp, etc... events. However, these are not implemented
for these controls (they are implemented only for Form, Panel,
Control, from my understanding). I tried to implement custom controls
derived from these, and override OnMouseUp, or just add the event and
the event handler in the custom control (since all these are derived
from Control), but it still does not seem to work. I also tried to
implement a custom WndProc, but this does not work either. I searched
the group, but did not find any solution not including third-party
controls.
Does anyone have any suggestion? This seems to be a pretty common
problem....

Thanks
Ivan
1 Comment
  Calling visual basic dll from excel vba         


Author: B-rad
Date: Jul 15, 2008 07:41

Hello Everyone,

I'm having a problem using excel vba to call the following dll code
which was created as a "Class Library" using Visual Basic 2008 Express
Edition (note: "Class Library" was the only project choice that I saw
that created a dll).
_________________________________________________________
Public Class Class1
Public Sub a1_home_cell(ByVal jun As Excel.Workbook)

MsgBox("You're In!")
' returns each sheet to the home position

Dim sh As Excel.Worksheet
'Dim jun As Excel.Workbook

For Each sh In jun.sh
'ActiveWorkbook.Worksheets()
sh.Activate()
sh.Range("A1").Select()
Next sh
Show full article (1.17Kb)
1 Comment
  Call managed functions from unmanaged         


Author: Mhaxx
Date: Jul 15, 2008 02:58

How to call .NET CF functions from (managed, Windows CE based) code?

Mhaxx
12 Comments
  convert 0/1 into yes/no datagridcolumnstyle in CF 2.0         


Author: Chris
Date: Jul 15, 2008 02:39

I am developing a mobile app (in win CE 5/ win Mobile) in compact framework
2.0.
There is also a pocket sql database. In the db there is a table with column
(integer type -> should I convert it to bit?) that stores 0/1 values. There
is a datagrid in my mobile app that shows that db column. Is it possible to
show yes/no instead of 0/1?
I would like to do it by using tablestyles? But how to do that? Any ideas?
no comments