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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ICTECH

    Creating a Novell ZCN Agent installer

    Hi Everyone, I've been assigned the fun task of mass installing the Novell ZCM agent on 5000+ machines in a 3 weeks, I have the installer working, but have one massive problem in that it has to happen when no one is logged into the workstation and the install can't install the agent if the...
  2. ICTECH

    Adding perferred networks to wireless network

    Thanks for your reply.. Do you know of any samples?? I was looking at the Wifi API and wasn't finding any examples of how to query for the perferred networks..
  3. ICTECH

    Adding perferred networks to wireless network

    Hi Everyone, Can anyone point me in the right direction or have any ideas how I can create a app that will add perferred networks to wireless networks in windows XP & possible win 7?? I have over 100 laptops that require a new wireless profile to be created.. I really don't want to have to...
  4. ICTECH

    Prevent Multiple (Concurrent) Logins

    Thanks Jason for getting back to me so quickly... How would you handle in code if a browser/windows crashed and the user didn't logout nicely?? I guess this would have to be part of the notcurrentlyloggedin routen.. What I mean is I'll have to check to see if the timestamp has expired (ie...
  5. ICTECH

    Prevent Multiple (Concurrent) Logins

    Sorrt for the long delay in getting back to you all.. Do any of you have ang code examples?? Thanks...
  6. ICTECH

    Prevent Multiple (Concurrent) Logins

    how do you handle the session exit? If they don't click on logout???
  7. ICTECH

    Prevent Multiple (Concurrent) Logins

    I'm working on a Application and need to be able to stop users from login in multipe times... I've been trying out the samples I have found googling the topic.. But I can't seem to get any of them to work.. They all seem to be using a custom login page and I'm trying to use the Login control...
  8. ICTECH

    Finding Total Hard Drive Capacity

    Hi All... I'm working on a project and I need to pull the total Hard Drive Capacity (Size) in the machine. What I've found so far isn't retrieving the information correctly.. (Ie. 80GB drive is being listed as a 1.18GB) Does anyone have a very reliable way to do this? Thanks... Her's the...
  9. ICTECH

    menustrip Problem.

    Hi ErnstJa.. I agree, but for some reason its not responding.. I have stepped through the code and its being hit with no error messages.. I also have the form as a MDI Container.. That shouldn't cause the menustrip to not respond?
  10. ICTECH

    menustrip Problem.

    Hi ErnstJan & Sorwen I have tried both of your sudgestions and still have no change in the form.. Me.UserManagerToolStripMenuItem.Visible = False Could the form need to be redrawn on the screen before the change is seen?
  11. ICTECH

    menustrip Problem.

    Hi All.. I'm trying to setup a menustrip that will show different options acording to the logged in user security clearence. I'm using vb2005 and this is a winform app. I've build the menustrip with all its options. Me.MenuStrip1.Items.Item("User Manager").Visible = False But...
  12. ICTECH

    Datagridview calculate column value

    Hi RiverGuy... Thanks for all your help.. I've started working on the Report section for the Payment recieved module.. I figured that you may be busy.. When you have time..
  13. ICTECH

    Datagridview calculate column value

    Hi RiverGuy.. Here is the actual form that I'm working on.. I've included it so you can see what exactly I'm doing.. Thanks for all your help...http://www.wsd1.org/davidliv/test.zip
  14. ICTECH

    Datagridview calculate column value

    Hi RiverGuy.. Sorry, The Dataset1 has 5 members.. Invoice - Invoice # Date - Date the Invoice was issued Amount - the total amount for the Invoice Payment - this gets entered manually Difference - this is calculated by the datset (Payment - Amount)...
  15. ICTECH

    Datagridview calculate column value

    Hi RiverGuy.. Here's the code for the winform... The dataset will be populated from a database. But for now I just populate it manually for testing.. The form has a datagridview control and a couple of buttons.. Let me kow if you need anything else.. And thanks again... Imports System...
  16. ICTECH

    Datagridview calculate column value

    Hi RiverGuy... Thanks.. That Worked. But I noticed, that if you click on any other control besides using the Tab Key, it cuased the following error: An unhandled exception of type 'System.StackOverflowException' occurred in System.Data.dll Thanks again..
  17. ICTECH

    Datagridview calculate column value

    Hi RiverGuy.. Not sure how to incorporate this.. Here's my Datagridview1.CellValueChanged code.. Thanks for the help Private Sub datagridview1_CellValueChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles...
  18. ICTECH

    Datagridview calculate column value

    Hi RiverGuy.. Thanks.. But how do you get the totals to update automatically when the data in the grid changes? The grid is where they enter the amount the client has paid. They want to have the totals change right after the data is entered for each invoice payment... I've been playing...
  19. ICTECH

    Datagridview calculate column value

    Hi!! I've been googling and not really finding much.. I'm working on an app that a grid that shoulds a clients invoice amounts and there payments. I would like to have a running total at the bottom of each columb. Would it be posisble to have this the last line of the grid even if there are...
  20. ICTECH

    Converting MS SQL Stored Procedure to MySQL

    Thanks for your reply DonQuichote. But can you help me translate those two procedures into MySQL procedures? SELECT @IsApproved = m.IsApproved, @IsLockedOut = m.IsLockedOut FROM Applications a, Users u, Membership m WHERE LOWER(@ApplicationName) = a.LoweredApplicationName AND...

Part and Inventory Search

Back
Top