Search results for query: *

  • Users: saidev
  • Content: Threads
  • Order by date
  1. S

    Data Reader with Active Directory Group

    Hi Guys, I have 25 users in 1 AD group. i have 50 users in one of the Sql Server table. I want to compare the AD Group users with Sql table users and add to the group which do not exist in the AD group. Here is my code. Can you please modify my code? Appreciate your help. Thanks Dim...
  2. S

    Reading ".xlsx" files from a web browser

    Posted - 05/11/2012 : 18:38:13 -------------------------------------------------------------------------------- Hi Guys, I am uploading ".xlsx" files to one of my web page in a calendar. While reading the file i am getting a message "Excel found unreadable content in 'test.xlsx' Do you...
  3. S

    Comparing Active Directory Group Users

    Hi Guys, I have bunch of users in one of the Active Directory Group. I am adding users from one of my Sql Server table. I want to compare the Active Directory group users with my sql table users and add the users to that group only if they don't exists in that group. here is the code i am...
  4. S

    Active Directory Users

    Hi Guys, I am trying to add user to a Active Directory group which i already have access to but i am getting an error "Unspecified Error" Ca you guys please take a look at my code and let me know what i am doing worng? Appreciate your help. Thanks Public Sub adUserToGroup() Dim...
  5. S

    Adding users to Active Directory Group

    Hi Guys, i am trying to add couple of users to active directory group that has already created. Could you please help me with using VB.NET code on how to add users to the Active Directory Group? appreciate your help. Thanks
  6. S

    Formatting CSV file

    Hi Guys, I am retrieving the data from AD and sending it to th CSV file. but the data is not coming in Column1,column2 and Column3. Can you guys help me with formatting. PLease see my code below. Try dirEntry = New...
  7. S

    Active directory users into the Sql Server Table

    Hi Guys, We have a set of users in our active directory. I want to take the 2 fields(Username and EmployeeNumber) for all the users in the Active Directory and dump into the Sql Server Table. Can you guys help me with the VB.NET Code? I have been searching the google but couldn't find any...
  8. S

    Querying Active Directory from Oracle database

    Hi Guys I have a table in Oracle with a column userid and i have a userid column in Active Directory. based on this i want to query the Network ID and update in one of the Group in the Active Directory. Can you guys help me on how to proceed with VB.NET? I am New to Oacle Database...
  9. S

    Inserting Unformatted Text file into Temp Table of Sql Server2000

    Guys, I have an Unformatted Text file that I need to import into SQL Server2000. Can you guys help me how to import this data into a Temp Table in sql server 2000. Each field is separated by a Semi Colon in a row. I am using VB.NET . Here is the sample file. For Example: If we take a first row...
  10. S

    Next, Previous Navigation through records

    Hi Guys, I am using the below code for Previous and Next Record Navigation in a webpage. I don't want to use the session in this. what happens is if i use the "session" if i go to another webpage and come back it is loosing its state and i cannot navigate through records. can you guys help me...
  11. S

    calling function from another page in asp.net

    Hi I have a function called addsub() in a.aspx page. i want to call this addsub() function in b.aspx page. how to call this..? can you guys help me with this.. Thanks
  12. S

    Dataset not refreshing

    Hi Guys, When i do next and previous the dataset is not refreshing the data. how to refresh the dataset. can you guys help me with the below code. Thanks, Private Sub cmdNext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdNext.Click Dim objDS As DataSet =...
  13. S

    ListBox Question

    Hi, I have a list box and there are 1234 values in it. when i click on "1" then it should populate the data in 2nd list box based on the selection. my 2nd listbox data is custom text. how can i do this in vb.net Thanks,
  14. S

    DRopDown Combox Box vb.NET

    Hi Guys, I am populating the data in the Dropdown Comobo from the Database, How can i enter(append) the data in Dropdown, can you guys help me with VB.NET code.. Thanks,
  15. S

    Dropdown on select index changed

    Hi Guys, I have a dropdown ComboBox and a text box. when i select an item in dropdown Combo then it should automatically select the item in text box. can you help me with vb.net code Thanks,
  16. S

    Tree View check uncheck

    Hi Guys, If i check the parent node then all the child nodes need to be checked, at the same time if i uncheck the child node parent node needs to be unchecked.. can you guys help me with the vb.net code.. Thanks,
  17. S

    problem with next record

    Hi, is there any thing wrong with this code..? when i click next 2 times it blows out with error " there is no row at position 2" can you help me what is wrong with this..? THanks, If objDS.Tables(0).Rows.Count > Session("CurrentIndex") Then Session("CurrentIndex") = Session("CurrentIndex") + 1...
  18. S

    Formating Text box

    Hi guys, I have a text box with "1542.00000" i want to format it to "$1,542.00" can you guys help me with code in VB.NET Thanks,
  19. S

    Datagrid Question

    Hi Guys, I have a data grid with 4 columns and i have 4 textboxes in a webform. when i select a datagrid row it should display the that row values in the 4 text boxes. how to do this in vb.net? can you guys help me with code..? Thanks,
  20. S

    Disabling the button on a webform

    Hi Guys, i have 4 buttons on a webform, and i want to disable one button based on the condition. can you guys help me with code..? thanks
Back
Top