161 Posted Topics

Member Avatar for Ancient Dragon

> I noticed most of the free ones are pretty sad correct. visit these zedge.net ringtones.mob.org mobango.com to get full access to these sites i recommend you to use these sites from your device

Member Avatar for Learner010
0
94
Member Avatar for Learner010

i want to add a label over progress bar to show the percentage of the completed task . i added the code : Label1.Parent = ProgressBar1 Label1.BackColor = Color.Transparent but now i can't see the label1 even. so how to make label1 transparent.

Member Avatar for Gé48
0
4K
Member Avatar for Learner010

there are 10 labels and 1 button in the form and i want to set some properties using code(which will applicable to lable only) , and for this i used the code For Each lbl As Label In Form1.Controls lbl.Font = New Font("Arial", 12, FontStyle.Regular, GraphicsUnit.Point) lbl.Top = settop lbl.Left …

Member Avatar for Learner010
0
3K
Member Avatar for Learner010

as the title , i want to create module for my application . i found that module is used for global declaration or function / procedure defination. but here i want to ask that how to create a module in vb.net which is applicable to all the window forms of …

Member Avatar for shann_
0
222
Member Avatar for lavanya uppala

creating buttons dynamically is 100% possible you can use the code as follow in order to create a button during runtime:- Dim btn As New Button btn.Name = "Button1" btn.Text = btn.Name btn.Location = New System.Drawing.Point(100, 100) btn.Font = New Font("Arial", 10, FontStyle.Regular) Me.Controls.Add(btn) And > and buttons of text …

Member Avatar for tinstaafl
0
333
Member Avatar for Learner010

i want to retrieve data from Access table but i don't know where i am going wrong.here i am going to show my work which return errors:- Dim con As New ADODB.Connection Dim rs As New ADODB.Recordset Public Sub procedure1() con.Provider = "Microsoft.jet.oledb.4.0" con.Open(My.Application.Info.DirectoryPath & "\Database1.mdb") End Sub Private Sub …

Member Avatar for Reverend Jim
0
858
Member Avatar for Learner010

i want to call event procedures (button1_click etc.) on certain conditions Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress If e.KeyChar = "A" then 'here i don't know how to call button1_click procedure End If here is what i want to do :- whenever any character …

Member Avatar for Luc001
0
370
Member Avatar for Learner010

how to create controls(like button , textbox) dynamically , i want to create these for 10 or may be more than 10 times . so i think i have to go through loops and probably i can do that but the problem is that how to create controls in runtime. …

Member Avatar for Learner010
0
415
Member Avatar for Learner010

i want to traverse a checkedlistbox using for each loop for example :- if i want to see that a particular item name exist in checkedlistbox or not. so i think that i need to use for each loop but really don't know how to traverse checkedlistbox using for each …

Member Avatar for GeekPlease
0
141
Member Avatar for Learner010

why control box(minimize , maximise and close button) is not accessible in design time in vb.net or there is another method to activate these tools.

Member Avatar for ddanbe
0
289
Member Avatar for Ancient Dragon
Re: F#

i dont know about f# i wanna practice on it and for this i have a few questions :- does it a new language ? is it available with visual studio 2008 ?(i dont find it in 2008)

Member Avatar for sepp2k
0
120

The End.