Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by NeilV

  1. NeilV

    DateTime Issue

    Thanks but this would require modifying all of the webpages(1000+). I think there is a configuration issue with the new server that is causing the date to be displayed incorrectly.
  2. NeilV

    DateTime Issue

    Hello, I have just moved our web server from Windows 2000(with IIS 5) to a Windows 2003(with IIS 6) machine. The new server displays the dates as mm/dd/yyyy hh:mm:ss am where as the old server displays them in the format we want - dd/mm/yyyy . The data is coming from the same database so I know...
  3. NeilV

    Changing DNS Entry

    Hello. I need to write a VB application that can update the DNS entry on the DNS server for a particular computer. For example when the application runs it will update the DNS entry for "myserver" to point to a particular(known) IP address. How can this be done? Any help would great! Neil
  4. NeilV

    Datagrid with several datatables

    Sadly i cant write a stored procedure to do this as the datatables are being populated by different databases, one on SQL Server and the other on an AS400...
  5. NeilV

    Datagrid with several datatables

    Thanks for the help guys. However, i cant seem to get it to work, i have the following code: DataRelation dr = allData.Relations.Add("ProdShip",allData.Tables["Produced"].Columns["Partnumber"],allData.Tables["Shipped"].Columns["Partnumber"]); dgInfo.DataSource = allData; dgInfo.DataBind()...
  6. NeilV

    Datagrid with several datatables

    Hello. I am trying to create a datagrid that has the results of several datatables. Each datatable contains a partnumber and quantity. I would the the row in the datagrid to contain the partnumber and then the quantity of this partnumber from each of the tables, effectively join the tables. How...
  7. NeilV

    template column visibility

    Genius! Thank you!
  8. NeilV

    template column visibility

    Hello! I am trying to sset the visible property of a template column within a datagrid at runtime. So, for example, i want some users to be able to view the Edit column and others not to see it. How can this be done programmatically? I know the template column has a Visible property that can...
  9. NeilV

    Displaying Memory Usage of Application

    Hello... Is there a way to display the memory that my VB program is currently using from within the code?? I have tried using the GlobalMemoryStatus API but that only shows the total memory usage for the machine not for the VB application. Anyone any ideas? Neil
  10. NeilV

    Table Sizes

    Hello... I have a database that is replicated across two servers using transactional replication, which works ok. However, I have found that the table sizes on the primary and secondary servers are significantally different even though they have the same number of rows. The tables are far...
  11. NeilV

    ActiveX Problem

    WZUP, Thanks for that, but it didnt seem to solve the problem :(
  12. NeilV

    ActiveX Problem

    Hello, I have a very annoying problem with an application that I have inherited. The application in question uses several ActiveX.exe. When I modify any of the ActiveX I find that I have to recomile the whole application otherwise it loses its reference to the modifed ActiveX. I have tried...
  13. NeilV

    Insert query

    Thanks for that SwampBoogie,it did the trick!
  14. NeilV

    Insert query

    Hello, I am trying to write an SQL insert that gets some values from another table and some values created from elsewhere. What i would like to do is: insert into table1 (Board,entity,info,value,clocked) values('A','B','C',select value from table2 where info=123,getDate()) Is something like...
  15. NeilV

    SQL subtraction

    Thanks mija! That did the trick! :-D

Part and Inventory Search

Back
Top