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 Chriss Miller 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 mander23

  1. mander23

    css main menu with lists

    I am trying to create a main menu on a site with css and lists. The following is my html and css. I would like to get rid of the border between between themain item and subitems so it looks like a tab when hovered over. Any help would be appreciated. THanks you. <div id="menuwrapper"> <ul...
  2. mander23

    If Statement

    I am new to FoxPro. I am actually converting a foxpro application to vb.net. Could someone explain what this if statement is doing. Not sure what the {} means. Thank you. IF folup_dt1 >= rep3_beg_dt; AND folup_dt1 <= rep3_end_dt; AND comp_dt1 = {}; AND !rereg_dt1 = {}; AND posted1 = .f.
  3. mander23

    3 tier development time break down

    In a 3 tier design, is there a ballpark percentage breakdown on how much time is spent developing each tier?
  4. mander23

    Data Access over network

    I am building a windows form application that will be used all over the country with a central database residing in one location. All computers will be on same network, but I was wondering if I need to be concerned about latency in the time it takes to get to the database and back. Just...
  5. mander23

    duplicate disposition approval workflow

    I am new to sharepoint and need to duplicate the disposition approval workflow. I need the exact same functionality but need to add a few things. Basically we want the disposition approval workflow to start on items in a library after an expiration date. We will have the same item in records...
  6. mander23

    Metadata of sql server stored file

    I am saving files into a sql server 2005 database in a binary field. I am wondering how to get the metadata that is embedded in that file. If I get the file out of the database and save to a file on hard disk that metadata changes correct, such as created date. Is there a way to get the...
  7. mander23

    Windows Service won't send email

    I created a windows service that sends out email for certain things. My problem is that it will not send emails until the service is stopped. As soon as I hit stop I will then get a lot of emails. Does anyone know why this may be. THank you.
  8. mander23

    ComboBox in datagridview changes color

    I have some comboboxes in a datagridview. On occasion when I click on them and the list drops down the backcolor will be black. Then I can click off of it and back on again and it will be fine. ANy ideas? THank you.
  9. mander23

    Totaling Rows

    How do I display in a group footer a total from only certain rows in the dataset. I want to total a column up where another field is equal to a certain value. Thank you.
  10. mander23

    Stored Procedure calling a view

    I have a stored Procedure that is calling other stored procedures and other views. At the top of my main SP I have the 'set TRANSACTION Isolation level READ UNCOMMITTED' to help with locks. When I call the other SP's or views do I have to have that same statement or either 'with (nolock)'...
  11. mander23

    async file write

    What do you mean by overlap. THe file I have is a tif file. Is there someway I can do it with that.
  12. mander23

    async file write

    I would like to be able to async file write. I would like to open a file and I would get the length like so. fs.Read(buffer, 0, buffer.Length) then I would like to open 2 filestream and write at the same time so it doesn't take as long. For example if the total length of the file is 100. I...
  13. mander23

    Get variable names from form

    I need to get all of the variable names that are declared in a form. I want to be able to put a value in a database like variable 'A' equals xyz. Then at runtime loop through the variables until a variable is equal to the database and set it. I know how to get all of the controls and loop...
  14. mander23

    Multiple Global Variables take a long time to load

    Thank you chrissie1, I will do this.
  15. mander23

    Multiple Global Variables take a long time to load

    What i was trying to do is this. declare globally: master_rate_info = HYDRUS.CONTROL.DataClass.GetSimple("master_rate_info", strEnv, False) i also have this declared globally: Private Delegate Sub DefineTableHandler(ByRef tbl As Object, ByVal tablename As String) Private DefineTable As...

Part and Inventory Search

Back
Top