Search results for query: *

  • Users: borris83
  • Content: Threads
  • Order by date
  1. borris83

    Available SQL and ASP.NET developers needed in various parts of US

    Architect-.Net Developer/Consultant (IL) The selected candidate will perform the following duties: - Create and maintain web applications using DotNetNuke, ASP, ASP.NET, VB, VB.NET, Java, Ajax, and HTML - Create web applications, posting data and reports from a source of SQL Server Databases -...
  2. borris83

    using wmi, ldap vs inbuilt objects

    Looks like there are a few things which can be accomplished by two ways... For things like querying registry, eventlog etc I make a connection to wmi services and then query for information.. But for querying event log there is an object called geteventlogs and also there is a class for...
  3. borris83

    System.AccessViolationException while in a loop

    Hi everyone, Here is a part of my code which loops through the items in a checkedlistbox.. The text of each item is the name of a computer... When the loop runs for the first time, it runs fine, but when it goes through the loop the second time I am getting the following exception...
  4. borris83

    textbox questions

    1. I have a multiline texbox and want to know if there is a way to search for a text in the textbox... The user should be able to input a search string and click a button to search all the entries of the string in it, just like ctrl+f 2. Is there anyway to make the textbox 'read only'? The...
  5. borris83

    DateAdd function - Arithmetic operation resulted in an overflow

    Hi everyone, I am using the following code to add some value to a date: Dim strdate As Date Dim numinterval As Double numinterval = 149548.720386359 strdate = DateAdd(DateInterval.day, numinterval, #1/1/1601#) MsgBox(strdate) The value numinterval is the...
  6. borris83

    How to dynamically add checkboxes in a foreach loop

    I have the following for each loop which loops through a registry key and reads all the values: Dim returnValue As RegistryKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run") Dim keyname As String =...
  7. borris83

    Where to find Microsoft.win32 namespace?

    I read in msdn that registrykey class is found in Microsoft.win32 namespace But when I try to add a reference to my project, I couldn't find Microsoft.win32 in the list. What should I do?
  8. borris83

    Tooltip in checkbox not showing properly

    I added a tooltip control in my form and set a tooltip for a checkbox. The tooltip shows fine until I check the checkbox... If I check the checkbox once and uncheck it, the tooltip never shows up when I hover the mouse over it... How to make the tooltip to show on mousehover no matter the...
  9. borris83

    What object can I use to read and write to windows registry?

    In vb.net, What object can I use to read and write to windows registry? (in vbscript, I use 'regread' in wscript.shell)
  10. borris83

    Question A question about form position

    Say I have form1 and form2 in an application... There is a button1 which will hide form1 and show form2... When the form1 appears initially it appears at the left hand side corner of my screen. But when form2 shows, its position is in the right side of the screen. I noticed that any form...
  11. borris83

    Change the text of a label in a loop

    I am using a for each loop and each time the loop executes, the text of the label has to be changed.. But for some reason, it only changes the text of the label during the last execution of the loop... Here is the code: Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As...
Back
Top