Search results for query: *

  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 jim, Do you have a sample of the code as i find it vague or where can i find from the web? sorry i am quite new to this language. How do i mantain the selection and how do i store the id of the selected row? Thank you for your great help and patience
  4. B

    How to use threading to UPdate Datagridview with timer

    hi Jmclilhinney, I had placed the code with the following code as advise below However, when i put a timer to update the dataset, it always reset my selection on the datagridview. I tried to remove the cleartable option at the tableadapter but it doesnot update my dataset. When one record is...
  5. B

    How to use threading to UPdate Datagridview with timer

    Hi Jmclilhinney, Thanks for your respond. however i still face problem. I can only create the tableadpater at the design mode. How do i write the code in the coding window? Secondly i will like to have a SQL statement with its condition link to a variable but the table adapater is unable to do...
  6. B

    How to use threading to UPdate Datagridview with timer

    hi jmcihinney i had solve the problem. However, i am still facing a Dilemma that i cannot solve. Can you advise me on this? I had a textbox and a datagrdview bind to this dataset with the code below. But when i had the code dataset1.searchtrack.clear to be initialized every two sec using...
  7. B

    How to use threading to UPdate Datagridview with timer

    method cannot work Thank for your respond i had try the method as mentioned however it prompt me the error that the datasource of the datagridview cannot be refer back to the BindingSource. You had mentioned the IsBusy property. How do i code it? Can you help me on this? second...
  8. 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...
  9. 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
  10. 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...
  11. 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...
  12. B

    Timer to extract count of database

    Thank for your great help. Can i ask another favour from you. how do i run it on a thread? Do you have a website example. Thank again
  13. 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...
  14. 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
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. 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
  20. B

    Update item in Combo box automatically

    Hi, How do i clear all the items of the combobox?
Back
Top