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!

Search results for query: *

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

    Accessing Values in a Created Datagrid

    I have a datagrid created programtically(dgAccounts) inside another datagrid(dgHousehold). I have to step through dgB in order to get certain values but then i have to step through dgA in order to get some values from there also. this is the one i created programtically: Public Sub...
  2. ac11nyc

    DataReader Problem

    Dim SelectCMD As New SqlCommand("SELECT BreakpointStep, BreakpointValue, Rate_BP * .01 AS Rate FROM FEE_SCHEDULE_DEFAULT WHERE (AccountType = 1) AND (BreakpointStep > 0) AND (ScheduleId = '000009');" & _ "SELECT BreakpointStep,BreakpointValue, Rate_BP * .01 AS Rate FROM FEE_SCHEDULE_DEFAULT...
  3. ac11nyc

    Comparing 3 Values in the same column of a datagrid

    Ok so i have a datagrid that brings back a few Values. I give the user the option to insert a record anywhere inside the datagrid just as long as the Values are in a correct ascending order. How can i compare the value of the previous row with the value of the selected row as well as comparing...
  4. ac11nyc

    Not show drop downs for a certain row

    A) i have 2 drop downs and a text box in a grid B) drop down B doesnt get loaded until a choice from drop down A is selected. C) if that value is not selected from drop down A then i want drop down B to not even be visible but if the correct value is selected i need the drop down to be loaded...
  5. ac11nyc

    Timer

    Im trying to launch a save event every 60 seconds using a timer. I use to know how to do this but cant quite rememeber how i did it. does anyone know how to do this?? either using Javascript or code-behind will work. thanks
  6. ac11nyc

    Inserting a Null value for a date field

    Does anyone know how i can insert a null value for a date. My code looks like this: Dim dtEndDate As Date If txtEndDate.Text = String.Empty Then dtEndDate = DBNull.Value ^DOES NOT LIKE THIS ^ ^SAYS VALUE OF SYSTEM.DBNULL CANNOT BE CONVERTED TO DATE^ ^I MUST INSERT A NULL IF...
  7. ac11nyc

    Sort first but then its not grabbing the correct information for that

    I have a datagrid that has a hyperlink in the 1st column that once clicked, it sends them to another page with the individuals SSN being sent over to get information for that page. The only problem is that when i sort the datagrid and then i click on an individuals name, it grabs the row from...
  8. ac11nyc

    Help with sorting

    ok for some reason im having some trouble sorting ...... can someone show me how to sort any column of a 5 column datagrid both in asc and desc order. Thanks & any help would be greatly appreciated. I know this is easy but for some reason i cant figure this out
  9. ac11nyc

    Coverting to Binary

    I have an application where the user can attach any kind of file and it then becomes part of a dataset. I have stepped through the whole dataset but cannot seem how to insert the file in the database. Does anyone know how to insert a file into a database? any help would be greatly appreciated
  10. ac11nyc

    Anyone know some Flow chart Software

    I was wondering if anyone could tell me the name of a program that i can download or purchase where i can create Flow Charts in web apps. The information for the Flow chart will come from a database. Any help would be nice ..... already tried Godiagram but that gets hairy. thanks AC
  11. ac11nyc

    Seacr a directory

    Does anyone know how to search a directory for a count of folders and to get each folder name inside the directory?? any help would be greatly appreciated Thanks alex
  12. ac11nyc

    Adding a row to an empty dataset

    I have a datagrid that is bound to an empty dataset but it has a row that allows you to enter data and an option to Insert the row into the grid with information they filled out. The idea behind this is that i want the user to be able to enter multiple records and when they finally click save...
  13. ac11nyc

    Access Denied When writing

    I am getting acces is denied to a local folder when trying to write a file to that folder and i made sure that in the code i stated that the folder be writable. Does anyone know why this would happen or perhaps direct me to some code on how to write a file to a folder.
  14. ac11nyc

    Loading an Image and saving to a file

    i want to load an image in .Net and then save it to file. Does anyone know how to do this??
  15. ac11nyc

    XML coming from a dataset

    I have an XML coming back from the database that looks like this: <?xml version="1.0" standalone="yes"?> <DOCUMENT> <FC_WEB_PROFILE> <EmployeeId>63645ebc-ade5-4393-a9e7-dedf987a8c79</EmployeeId> <FCName>Daniel Ramer</FCName> <FCSiteName>Danny</FCSiteName> <GroupName>PCG Group -...
  16. ac11nyc

    Creating an XML from a dataset

    I want to create and setup an XML from a dataset. How do you create an XML file programmatically so that the XML file can look the way i want it to look so that it loads into a template that is already created. Any point in the right direction would be great thanx
  17. ac11nyc

    Creating an XML

    Does anyone know how i can create an XML file from data coming back from a database? If you have any examples - that would be great
  18. ac11nyc

    Referencing a dynamically created datagrid

    I created a datagrid dynamically with textboxes in it during the onItembound event of another datagrid but whenever i try to reference that datagrid, it doesnt recognize it and therefore i cannot reference or find the text box controls in order to check their values. Can someone pleeeeeeeease...
  19. ac11nyc

    Creating an event handler for a button inside a datgrid

    can someone please tell me why this isnt working?? Public Sub GenerateTasksDG(ByVal sender As Object, ByVal e As DataGridItemEventArgs) If ((e.Item.ItemType = ListItemType.Item) Or (e.Item.ItemType = ListItemType.AlternatingItem)) Then Dim TasksDG As DataGrid = New DataGrid Dim btnc As...
  20. ac11nyc

    Find a textbox that was created dynamically inside a datagrid created

    I have a datagrid(B) inside another datagrid(A). Datagrid(B) was created on datagrid(A)_onItemDataBound and textboxes were also created dynamically inside datagrid(B). I need to know how to Find those textboxes in code so that i may check their values and use those values to either insert or...

Part and Inventory Search

Back
Top