Click here to Skip to main content
15,923,087 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Rotating Dice Pin
FruitBatInShades16-Mar-04 22:35
FruitBatInShades16-Mar-04 22:35 
GeneralControl inside datagrid Pin
BlomEng15-Mar-04 21:43
BlomEng15-Mar-04 21:43 
Generaltext from form1 to form 2 Pin
ineedhelp15-Mar-04 21:35
ineedhelp15-Mar-04 21:35 
GeneralRe: text from form1 to form 2 Pin
Dave Kreskowiak16-Mar-04 2:42
mveDave Kreskowiak16-Mar-04 2:42 
GeneralCurious!All my linkbutton disappeared,why! Pin
BigGirlBigEyes15-Mar-04 19:18
BigGirlBigEyes15-Mar-04 19:18 
GeneralRe: Curious!All my linkbutton disappeared,why! Pin
FruitBatInShades16-Mar-04 22:46
FruitBatInShades16-Mar-04 22:46 
GeneralBecome nuts with ToolBar Pin
sybux200015-Mar-04 11:33
sybux200015-Mar-04 11:33 
GeneralRe: Become nuts with ToolBar Pin
Syed Abdul Khader16-Mar-04 20:21
Syed Abdul Khader16-Mar-04 20:21 
I am just answering ur second question.

You can get the current folder which has the exe by Application.Startup property like this

myImage = Image.LoadFrom(Application.StartupPath + "\Images\imgName.bmp").

You can attach the images with ur assembly itself.

For doing so, do the following steps.

You add all the image files to the project by right clicking the project
and add existing items.

Select all files and press F4 to open the Properties window. Change Build Action property to Embedded Resource.

Then make the DefaultNamespace if u want (Assume here "MyNamespace")

You can get the images from assembly like this.

Dim a as Assembly = [Assembly].GetExecutingAssembly()
Dim s as Stream = a.GetManifestResourceStream("MyNamespace.urImage1.bmp")
Dim bmp as New Bitmap(s)
GeneralRe: Become nuts with ToolBar Pin
sybux200017-Mar-04 10:16
sybux200017-Mar-04 10:16 
GeneralRe: Become nuts with ToolBar Pin
Syed Abdul Khader19-Mar-04 21:25
Syed Abdul Khader19-Mar-04 21:25 
GeneralCash Registers Question ! Pin
Member 52593915-Mar-04 10:47
Member 52593915-Mar-04 10:47 
GeneralRe: Cash Registers Question ! Pin
Dave Kreskowiak15-Mar-04 11:12
mveDave Kreskowiak15-Mar-04 11:12 
GeneralRe: Cash Registers Question ! Pin
Wayne Phipps16-Mar-04 8:46
Wayne Phipps16-Mar-04 8:46 
GeneralHide text Tab in a TabControl Pin
sybux200015-Mar-04 8:30
sybux200015-Mar-04 8:30 
GeneralRe: Hide text Tab in a TabControl Pin
Dave Kreskowiak15-Mar-04 9:10
mveDave Kreskowiak15-Mar-04 9:10 
GeneralRe: Hide text Tab in a TabControl Pin
sybux200015-Mar-04 11:29
sybux200015-Mar-04 11:29 
GeneralCopy object from clipboard to file Pin
Member 77096915-Mar-04 6:37
Member 77096915-Mar-04 6:37 
GeneralRe: Copy object from clipboard to file Pin
Dave Kreskowiak15-Mar-04 6:55
mveDave Kreskowiak15-Mar-04 6:55 
GeneralRe: Copy object from clipboard to file Pin
Member 77096916-Mar-04 0:29
Member 77096916-Mar-04 0:29 
GeneralRe: Copy object from clipboard to file Pin
Dave Kreskowiak16-Mar-04 2:23
mveDave Kreskowiak16-Mar-04 2:23 
GeneralRe: Copy object from clipboard to file Pin
Anonymous16-Mar-04 7:18
Anonymous16-Mar-04 7:18 
GeneralRe: Copy object from clipboard to file Pin
Dave Kreskowiak16-Mar-04 9:06
mveDave Kreskowiak16-Mar-04 9:06 
GeneralRe: Copy object from clipboard to file Pin
Member 77096917-Mar-04 4:10
Member 77096917-Mar-04 4:10 
GeneralRe: Copy object from clipboard to file Pin
Dave Kreskowiak17-Mar-04 5:48
mveDave Kreskowiak17-Mar-04 5:48 
GeneralRe: Copy object from clipboard to file Pin
Member 77096917-Mar-04 7:08
Member 77096917-Mar-04 7:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.