|
More site info...
|
|
Forum profile page for VB.NET on http://www.daniweb.com.
This report page is the aggregated overview from a single forum: VB.NET, located on the Message Board at http://www.daniweb.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "VB.NET" on the Message Board at http://www.daniweb.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on VB.NET:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
92
|
318
|
944
|
|
Post:
|
180
|
545
|
1,827
|
|
|
VB.NET Posting activity graph:
|
Top authors during last week:
user's latest post:
VB.net 2008 and XML problems -...
Published (2009-12-22 00:00:00)
Ok, I think I get what you're trying to do. But I'm confused as to what is supposed to be the overall background image in your picturebox. In your textureFocus if, you're setting the picturebox image to the value(so changing the background) and then you're adding that same image at a smaller size to the picture. Do you just want to do this? Help with Code Tags VB.NET Syntax ( Toggle Plain Text ) If tmpDataGridView. Item...
user's latest post:
problem editing adodb recordset
Published (2009-12-23 17:19:55)
Help with Code Tags VB.NET Syntax ( Toggle Plain Text ) Private ADOConnect As New ADODB. Connection Dim ADOCmd As New ADODB. Command ADOConnect. Open ( My. Settings . DSN , My. Settings . DBUser , My. Settings . DBPass ) ADOCmd. ActiveConnection = ADOConnect ADOCmd. CommandText = "UPDATE members SET Active = 0 " ADOCmd. Execute ( ) ADOConnect. Close ( )...
user's latest post:
Problem with combobox binding
Published (2009-12-23 08:21:11)
You say the 'column' relatiesoort exists, but what is the name/index of the table in the dataset? When you use a dataset for the datasrouce you specify the table to use eg ComboBox1.DataSource = ds.Tables("tablename") or ComboBox1.DataSource = ds.Tables(0) . Once you have assigned the table you then set the Comboboxes Display and Value members: Help with Code Tags VB.NET Syntax ( Toggle Plain Text ) ComboBox1....
user's latest post:
VB.net 2008 and XML problems -...
Published (2009-12-23 06:21:52)
Thanks again Your code really helped, I've had to futz about with it a little, but I now have it displaying exactly how I want it to. Still need to muck about with sizing/scaling a little on a couple of the elements, but so far it's looking great. I'm including a few screenshots so you can see where I'm at with all your help Next step(s) are getting the XML preview to display all neatly and readable, and getting some of...
user's latest post:
Syntax highlighter in RichTextBox
Published (2009-12-23 17:51:38)
This works. Help with Code Tags VB.NET Syntax ( Toggle Plain Text ) Dim fontfamily As String = "Courier New" Dim fontsize As Integer = 10 Private Sub Form1_Load ( ByVal sender As System. Object , ByVal e As System. EventArgs ) Handles MyBase . Load RichTextBox1. Text = "var surface_old, surface_new, width, height, fraction;" + Environment. NewLine RichTextBox1. Text += "surface_old...
user's latest post:
I want to convert my project...
Published (2009-12-18 00:00:00)
You need to have .Net framework redistributable on the Machine you want the application to work. Normally its is done with the setup of your Application.
user's latest post:
how to convert vb.net and sql...
Published (2009-12-20 00:00:00)
You need to make a dynamic connection string. Meaning that you need a way to prompt the user (if the settings werent previously saved) to select the server & database they will be using and from there save your connection string.
user's latest post:
Problem with combobox binding
Published (2009-12-23 08:21:11)
Hi Try this: Help with Code Tags VB.NET Syntax ( Toggle Plain Text ) dim dtTable as Datatable dim drRow as DataRow dim intRecord as integer 'assume you populated the table etc for intRecord = 0 to dtTable. Rows . count -1 drRow = dtTable. Rows ( intRecord ) myCombox. Items . Add ( New DataItem ( drRow ( 0 ) . Tostring , drRow ( 1 ) . ToString ) next dim...
user's latest post:
Combobox
Published (2009-12-22 00:00:00)
• • • • Originally Posted by thecoat Help with Code Tags VB.NET Syntax ( Toggle Plain Text ) str = "SELECT sno,name,city FROM employees" cmd = New SqlClient. SqlCommand ( str , con ) da = New SqlClient. SqlDataAdapter ( cmd ) dt = New DataTable da. Fill ( dt ) With ComboBox1 . DataSource = dt . DisplayMember =...
user's latest post:
Send Command to Command Line...
Published (2009-12-18 19:30:18)
Okay, the notepad version of this works great. very cool. Following your logic, I changed my batch program code to match. I can't explain why, but the process dies immediately. I'm confident the command syntax is good. I've been checking this all along in VS2008 with debug.WriteLine(p). Though the tricky syntax doesn't offer confidence to the programmer ... JavaScript is easier. In checking all of this, however, I...
|
|
|
|
Latest active threads on VB.NET::
Started 5 days, 2 hours ago (2009-12-20 14:13:46)
by Ragoune
Hi,
Thanks for your reply, Ive implemented the code and this is my result (see below).
Quite different, rather weird though.
Ragoune
Started 1 day, 23 hours ago (2009-12-23 17:19:42)
by labsnark
Excellent! Very many thanks - that part of things now works like a dream.
I considered about try and catch, although I didn't go for it in the end because it seemed like it would be so ungainly that there ought to be something better obviously, there was...
Thanks again.
Started 2 days, 21 hours ago (2009-12-22 19:19:29)
by LennieKuah
Hi Ryshad,
I am experiencing similar problem with Ulukay.
I follow your suggestion and tested it out. I have set all the textbox control properties TABSTOP = FALSE.
At a particular textbox control KEYDOWN event for testing purpose I created this script
Private Sub txtDebtorId_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ...
Started 1 day, 23 hours ago (2009-12-23 17:18:51)
by cdtrd
I've already figured out the Tab design itself.
How about the border on the first image and dropdown on the second one?
//edit
nevermind the dropdown, figured it out aswell.
Started 2 days, 1 hour ago (2009-12-23 15:20:07)
by telltouday
I have data getting from query where in i need to modify 4-5 columns and make a single column, thn create new row and add it to data table
So everytime i'm adding new row its creating new rows and that the problem
I can't do much b'cos i get data completely dynamically,so i did not find anyway to add to the existing rows with creating new column
Thanks
Started 1 month ago (2009-11-20 00:00:00)
by lss123
I understand garbage collection, but all of these word objects will be in memory and referenceable (made up my own word there) throughout the entire course of the program. I'm designing it that way for specific reasons.
So really what I'm asking is, is that for any object created that has a number of functions, procedures, and maybe constants defined - are these functions/procedures/...
Started 2 days, 12 hours ago (2009-12-23 04:20:33)
by selvaganapathy
Hi
I hope you are familiar with Win32API.
use MoveWindow() or SetWindowPos() API to move start menu
|
|
Hot threads for last week on VB.NET::
Started 1 week ago (2009-12-18 00:00:00)
by TheMightySpud
I want to have your children LOL.
That is fantastic, thanks. Didn't really think of using a datagrid view before but it works great.
Thanks you ever so much.
The reason I wanted to use text boxes is that some of the entried are things like images and colours and would like to add in browsing and picker capabilites later on.
Is that possible with datagrids?
...
Started 1 week ago (2009-12-18 00:00:00)
by jlego
no, not the count.
i always thought that if a listview had anything in it, that it would automatically have a default index selected. but i run into an error where it doesn't from time to time, and like i said i need to make sure that there is a .tag set on the listview before i can execute certain code.
vb6 was quite easy, just is listview.selecteditem is nothing then exit sub...
Started 1 week ago (2009-12-18 15:30:17)
by rfrei
Thank you. That sort of helped ...
The proe process (xtop) is now starting up as a result of changing .FileName to the proe.exe path that you suggested.
However, the process dies rather quickly. I'm not sure that the eDrawings batch publisher that I'm trying to talk to likes the broken syntax.
I'm still at a loss on this ... can't I simply pass the full command to cmd.exe ...
Started 2 days, 12 hours ago (2009-12-23 04:20:33)
by selvaganapathy
Hi
I hope you are familiar with Win32API.
use MoveWindow() or SetWindowPos() API to move start menu
Started 2 days, 21 hours ago (2009-12-22 19:19:29)
by LennieKuah
Hi Ryshad,
I am experiencing similar problem with Ulukay.
I follow your suggestion and tested it out. I have set all the textbox control properties TABSTOP = FALSE.
At a particular textbox control KEYDOWN event for testing purpose I created this script
Private Sub txtDebtorId_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ...
Started 3 days, 16 hours ago (2009-12-22 00:00:00)
by Ryshad
then go with the second option, create a variable to store your connection string and remove the My.Settings line. You can find a sample of SQL Server 2000 Connection strings here . Just replace masterConnection.ConnectionString = My.Settings.masterConnectionString with something like masterConnection.ConnectionString = "Data Source=myServerAddress;Initial Catalog=myDataBase;...
Started 5 days, 2 hours ago (2009-12-20 14:13:46)
by Ragoune
Hi,
Thanks for your reply, Ive implemented the code and this is my result (see below).
Quite different, rather weird though.
Ragoune
Started 3 days, 16 hours ago (2009-12-22 00:00:00)
by Damon88
• • • • Originally Posted by Ryshad Are you sure you mean design time? Design time is when you are editing the control in the designer and you wouldnt see changes to its paint event in the designer.
Do you mean you want to show changes to the control whilst the application is running? If so, thats run-time. You can call Refresh on the control to force a ...
Started 1 week ago (2009-12-18 00:00:00)
by tqmd1
• • • • Originally Posted by me655321 Help with Code Tags VB.NET Syntax ( Toggle Plain Text ) TextBox1. Text = ListView1. Items ( ListView1. FocusedItem . Index ) . SubItems ( 0 ) . Text TextBox1. Text = ListView1. Items . Item ( ListView1. FocusedItem . Index ) . Text TextBox1. Text = ...
Started 1 week, 1 day ago (2009-12-16 16:55:50)
by jlego
Help with Code Tags VB.NET Syntax ( Toggle Plain Text ) Dim strdate As String strdate$ = VB6. Format $ ( Now ( ) , "YYYY-MM-DD" ) msgbox ( strdate$ ) Dim strdate As String
strdate$ = VB6.Format$(Now(), "YYYY-MM-DD")
msgbox(strdate$) another way
|
|