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

    ...helpdesk\calltrack\MDB\ecall.mdb;") myConnects4.Open() Dim personaljobadapter As OleDbDataAdapter = New OleDbDataAdapter("SELECT * FROM TrackingDB WHERE assignto='" & currentuser & "'", myConnects4) personaljobadapter.Fill(DataSet1.Searchtrack) myConnects4.Close() On the other hand,i have a...
  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

    ...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 WHERE SYSTEMID = '" _ & selectedsys & "' AND ProbCat='" & procat & "'", myConnects) myConnects.Open() Dim reader...
  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

    ...it shows me the following error See the end of this message for details on invoking just-in-time (JIT) debugging instead of this dialog box. ************** Exception Text ************** System.InvalidOperationException: An error occurred creating the form. See Exception.InnerException...
  10. B

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

    ...e As System.EventArgs) Handles MyBase.Load myConnects.Open() Dim objadpater As OleDbDataAdapter = New OleDbDataAdapter("SELECT * FROM TrackingDB Where Workid ='" & lastserialworkid & "'", myConnects) Dim TrackingDB As DataSet = New DataSet1 TrackingDB.Clear()...
  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

    ...Source=\\136.121.2.1\its helpdesk\CALLTRACK\ecall.mdb;") myConnect.Open() Dim strSelect As New OleDbCommand("SELECT * FROM useradmDB WHERE username='bruce lim7'", myConnect) Dim reader As OleDbDataReader = strSelect.ExecuteReader Do While reader.Read()...
  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