Managing delays on dropdown or on tooltopexts
Fri, 19 Mar 2010 10:55:02 -0700
Hi all,
I made a program that shows some contextual menu (ContextMenuStrip) that can
have items (ToolStripMenuItem) with some DropDownItems.
To ensure short menu, I setted short Text properties to the
ToolStripMenuItem and a long description on the ToolTipText properties.
When I show that menu, and I hover ...
|
Deploying sql server app
Fri, 19 Mar 2010 14:46:50 -0000
Hi
I have a winform app with sql server backend. How can I create a deployment
package which when run by the end user does the following;
1. Install front end vb winfrom app.
2. Install sql server express 2008.
3. Cerate backend database MyDatabase which relevant database objects;
tables, views, triggers ...
|
Image not getting loaded from My.Resources
Fri, 19 Mar 2010 04:42:23 -0700 (PDT)
i got code below which works fine but i cant see image which is in
My.Resources in webbrowser. Please can any friend help
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim imge
imge = My.Resources.Smile
Me.WebBrowser1.Navigate( ...
|
inherits class.
Fri, 19 Mar 2010 12:54:09 +0200
Hello.
I want to create a new class (VB 2008).
What I did :
add new class.
and wrote :
Public Class MenuButton
Inherits Panel
...
The code isn't compiled :
Error 1 Base class 'System.Windows.Forms.Panel' specified for class
'MenuButton' cannot be different from the base class
'System.Windows.F ...
|
Moveable Graphic Object? tutorials
Thu, 18 Mar 2010 13:52:01 -0700
I am looking at a project which will require me to venture into some
new territory. I have been searching the net and appear to have not
hit on the correct keywords to find what I am looking for.
I need to write an application which draws objects on a canvas, but I need
the objects to remain objects so they c ...
|
Writing structure data to binary file
Thu, 18 Mar 2010 15:40:11 -0500
Hello all. First a quick sidenote thanking all who have helped me
embark down the .NET path.
At this time I need to write some data into a binary file, specifically:
Private Structure typBinFileHeader
Dim Hdr1 As Byte
Dim Hdr2 As Byte
Dim Option1 As Byte
Dim Option2 As Byte
Dim FileDa ...
|
Question about the Windows 7 API CodePack
Thu, 18 Mar 2010 15:32:58 -0400
A question about this item:
http://code.msdn.microsoft.com/WindowsAPICodePack/Release/ProjectReleases.aspx?ReleaseId=3574
I installed it, built the solution, and figured that I could just set
a reference to the DLL and use it in my code. Instead of getting one
DLL, each of the five projects in the solution ...
|
|
|
Where is WriteProfileString data stored?
Thu, 18 Mar 2010 08:37:03 -0700
I have an application which at one point needs to delete
a profile string created with
Declare Function WriteProfileStringA% Lib "Kernel32" (ByVal lpAppName$,
ByVal lpKeyName$, ByVal lpString$)
WriteProfileString(AppName, KeyName, "Some Value")
Web searches indicated that the call:
WriteProfileStr ...
|
rtsp streaming
Thu, 18 Mar 2010 11:48:14 +0100
There is a library to get the streaming data from remote rtsp source?
I found taoframework, but it is possible to get only one streming at time
because it use only client port 5000.
Thank a lot.
Pasquale
...
|
Eliminate / Hide the Form's Title Bar
Wed, 17 Mar 2010 18:35:01 -0700
In VB 2008, can I eliminate the Title Bar on a form? At a minimum, I want to
hide the min/max/close buttons on the right of the form and ideally I would
like to just not even have a title bar at all!
Thanks, John ...
|