|
plz i want convert date to days to Compare whith anther date like
date.now - 10/11/2006 = valu as daye
plz hel me
Ahmed El-Badry
|
|
|
|
|
Colin already told you how to do it a few posts up.
Dave Kreskowiak
Microsoft MVP - Visual Basic
|
|
|
|
|
How to make windows form tranceparent but the flashcontainer which holds the flash animation shoudn't be transeparent and all the picturebox controll which present in that form shouldn't be tranceparent.please help me in this matter quickly.
Ram Krishna Pattnayak
Software Developer(SDS)
Sun-Dew Solutions Pvt.Ltd
www.sundewsolutions.com
kolkata
|
|
|
|
|
You can pick a color for a transparency key for your ENTIRE form, not parts of it. If there is anything painted on your form that is this chosen color, even in a Flash animation, it'll be drawn transparent.
Dave Kreskowiak
Microsoft MVP - Visual Basic
|
|
|
|
|
Hi,
I have created dynamic button controls and added in Form directly. I want to add tool tip for each dynamic controls, Let me know how to do it?
Any luck, Thanks in advance.
Regards
Rams.
Be simple and Be sample.
|
|
|
|
|
suppose you are doing the following:
Dim btn As New Button
btn.Location = New Point(30, 10)
btn.Size = New Size(75, 35)
btn.Text = "abc"
ToolTip1.SetToolTip(btn, "this this my tool tip")
' just add a tooltip control to the form from the toolbox
Me.Controls.Add(btn)
When you get mad...THINK twice that the only advice
Tamimi - Code
|
|
|
|
|
how i change resolution of a system and according to that resolution all control to change their pixel ratio or forcefully i set a resolution which is fit for my application.
Ram Krishna Pattnayak
Software Developer(SDS)
Sun-Dew Solutions Pvt.Ltd
www.sundewsolutions.com
kolkata
|
|
|
|
|
That's a really bad idea. Changing the screen resolution will rearrange the icons users have on the desktop. You dont change system-wide settings just to make YOUR app look pretty. Windows is a shared system, and it's up to you to write your code so it works and plays nice with others.
Reead Automatic Scaling in Windows Forms[^] and be sure to read up on all the links at the bottom of that page.
Dave Kreskowiak
Microsoft MVP - Visual Basic
|
|
|
|
|
thanks for replay.if i want fix a resolution for my system then i want some code or some example.i want is there any mathod present for fix the screen resolution.thanks for give the hints i am using u,r concept
Ram Krishna Pattnayak
Software Developer(SDS)
Sun-Dew Solutions Pvt.Ltd
www.sundewsolutions.com
kolkata
|
|
|
|
|
|
how i do simple flash animation in vb.net,please any one send sample or send the steps for flash animation in vb.net.
Ram Krishna Pattnayak
Software Developer(SDS)
Sun-Dew Solutions Pvt.Ltd
www.sundewsolutions.com
kolkata
|
|
|
|
|
how i do simple flash animation in vb.net,please any one send sample or send the steps for flash animation in vb.net.
Ram Krishna Pattnayak
Software Developer(SDS)
Sun-Dew Solutions Pvt.Ltd
www.sundewsolutions.com
kolkata
|
|
|
|
|
U have to add ShockwaveFlashObjects & ShockwaveFlashObjects from add reference. then onload if flash object name is FlashObj write:
With FlashObj
.Stop()
.Movie = Application.StartupPath & "\mymovie.swf"
.Play()
End With
then u can dispose it : FlashObj.Dispose()
|
|
|
|
|
dear friends
I have developed an application, when the user clicks on create new file the it should create a sql2005 database file with the user defined name? how should i achive it
thanx
Taher
|
|
|
|
|
Use the CREATE DATABASE MyDbName SQL statement.
|
|
|
|
|
hi
i have to insert into a access table through vb.net
it contains one text field and a memo field
i am able to insert for first time from the second time it shows error
ans pls very urgent
with regards
Balagurunathan.B
|
|
|
|
|
Standard question #2:
What error message do you get?
Standard question #3:
What does your code look like?
---
single minded; short sighted; long gone;
|
|
|
|
|
i have cleared the error
thanks for ur response
with regards
Balagurunathan.B
|
|
|
|
|
How to insert data table details to SQL table in one time......??????
Thiwa
|
|
|
|
|
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
|
|
|
|
|
Hi,
I'm writing a program which views icons that are embedded in Dll and Exe files. But I'm not sure how to extract the icons from the files to view them. How would I go about doing that and, is there an easier way to view the icons than extracting them first?
Thanks!
Trinity: Neo... nobody has ever done this before.
Neo: That's why it's going to work.
|
|
|
|
|
|
Thank you!
Trinity: Neo... nobody has ever done this before.
Neo: That's why it's going to work.
|
|
|
|
|
Ok, I tried the article that you suggested, but it saves the icon in 16-bit colors instead of 32-bit. I would rather just display certain icons in a DLL (i.e. Shell32.dll) instead of extracting them. Any other suggestions?
Thanks again.
Trinity: Neo... nobody has ever done this before.
Neo: That's why it's going to work.
|
|
|
|
|
if you want to display them in a form try a listview. You can dynamically add items. This link will show you how:
http://abstractvb.com/code.asp?A=968
You can then add each one you want to and set the images etc.
Posted by The ANZAC
|
|
|
|