Search results for query: *

  • Users: brucelim80
  • Content: Threads
  • Order by date
  1. B

    Get windows security patches and IE hotfixes

    Hi, Can anyone help me on this issue? I need to write a program to capture PC serivce pack, security patches and ie hotfixes information. Is there anyway that VB.net can do it? Can anyone advise and provide me example? Thank you :confused:
  2. B

    Rename Column header of a datagrid

    hi all, Can anyone help me with this problem? I have a datagrid which bind to a bindingsource (connected to a dataset). How do i rename the columnheader text and remove some of the columns as well as setting the individual colummn width of the column? I know you can do these in a datagridview...
  3. B

    How to use threading to UPdate Datagridview with timer

    Hi Can anyone expert here help me with this problem? I have the code below to update the dataset Dim myConnects4 As New OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\136.121.2.1\its helpdesk\calltrack\MDB\ecall.mdb;") myConnects4.Open() Dim personaljobadapter As...
  4. B

    How to delete child node of a treeview

    hi can anyone provide me a code to remove the child node of the tree? i got a tree call maintree the following nodes are dataentry record1 record2 searchrecord record3 record4 i want to delete record1. How do i write a code to delete it THANK YOU
  5. B

    Add BindingSource to a variable

    Hi everyone, Does anyone know how to write a code to map a BindingSource to a variable? I have a bindingSource with the field username. I only know how to map to a text box deptcombo.DataBindings.Add("text", modibindingSource, "dept") I will like to map it it to a variable.Can anyone provide...
  6. B

    connecting VIA ADO.net slow after deployment

    hi all, I am a newbie in VB.net. Can someone help me with this problem? I had used oledb connection to extract data from database and dump it into items of combo box. It appear fast on the PC used for developing the application. example Dim strsql As New OleDbCommand("SELECT * FROM PROBLEMDB...
  7. B

    Timer to extract count of database

    Hi everyone, I need some advise on function and code for the following scenario; - I have a database with records - i need to display the total number of count on the textbox of the form every 3 sec how do i write a code with a timer to update the count onto the textbox every 3 sec? I know...
  8. B

    Detected changes of selected item on bound combobox

    hi can anyone help me with this problem? I have a VB.net program One combobox call x is binded to a Bindingsource showing its text The datasource and the displaymember is set to another dataset. How do i write a code to detect any changes of the selected item of the combox? Thank you
  9. B

    Crystal Report Error after deployment

    Hi Does anyone know how to solve this problem? I had tested the application on my visual studio with no errors. But after i package it and install on another computer, it shows me the following error See the end of this message for details on invoking just-in-time (JIT) debugging instead...
  10. B

    PC automatically restart after click on the printing button on Crystal report Viewer

    hi Does anyone know how to solve this problem? My PC autorestart it self while i click on the printing button on the crystal report viewer at debugging mode. i have the following code Option Explicit On Imports System.Data.OleDb Public Class jobprinting Dim myConnects As New...
  11. B

    INSERT Symbol into Database

    hi Does any one know how to code a SQL statement to allow symbol such as ' to be inserted into the database I had a code like this Dim insertprocess As String = "INSERT INTO TrackingDB(workid, username, dept, reportdate, reporttime, " & _ "reinputby, execdate, exectime...
  12. B

    SELECT MAX Statement

    Does any one know how to excute a select max statement? Please kindly provide me an example. My code below cannot work. It always show make sure that 1.the maximum index on a list is less than the list size 2. make sure data column names are correct (the column is correct") Dim datacheck As...
  13. B

    Tabpage control

    hi all, how do i write a code to select a tabpage of a tabcontrol on VB.net? I have a tabcontrol with three tabpage name called (test1, test2, test3) Thank you
  14. B

    Update item in Combo box automatically

    hi , Does anyone know how to write a code to automatically update the items of the checkbox (previously extracted from database) once detected any changes in the database without resetting the form? Thank you:confused: Regards, Bruce
  15. B

    Ado Executereader

    Hi all, I have the following code for adding item into the checkbox with data extracted from the database. However, when i removed the line in RED, the while loop show one item less such that the first record is missing. Does anyone know any proper code for this issue. Thank you Private...
  16. B

    Datetimepicker display format

    hi Does anyone know how to set the value of the datetimepicker to display time as value? I had set the format to time but the value still reflect date and time. Thank you for responding:confused:
  17. B

    Create subform within the form

    hi all, How do i create a subform embedded on the existing form such as when i click a button on the main form it will open the subform within in the main form ? Please note that the main form consist of buttons and information. I know VBA can have a subform inside another form Thank you
  18. B

    AUTO SELECT the last item of the list box

    hi all, How do i write a code to auto scroll and select the last item of the listbox automatically when a button is clicked? Thank you:confused:
  19. B

    HELP on OLE Database Execution

    confused: Hi All, Can anyone help me on this? i am a newbie I have an access database and i will like to execute an sql statement to search for the password of the username. For example i got a username call bruce lim8 to search but it was not found on the database. How do i write a code...
  20. B

    Acrobat Plugin Feature

    Hi Does anyone know how to use acrobat plugin in VB.net to convert excel document into pdf? Can you provide me some guidance? Thank you, Regards, Bruce
Back
Top