Search results for query: *

  1. F

    Question OUTlook Addin - Appointment data capture

    Visual Studio 2010 Outlook 2007 I am currently extracting all the appointments for a given time period from a calendar in my outlook. I have another outlook user create an alternate calendar and grant me access to the calendar. I can see the calendar in my outlook. I want to be able to grab the...
  2. F

    help with Nested Gridview footer totals

    Do I need to move the nested gridview to the edit templates menu? If I do that how do I get the grid to display?
  3. F

    help with Nested Gridview footer totals

    Were you able to see the footer details in the nested grid? I moved the following code to to the Parent gridview("GridViewProject") and I was able to see the title text in the parent footer. Protected Sub GridViewProject_RowDataBound(ByVal sender As Object, ByVal e As...
  4. F

    help with Nested Gridview footer totals

    when I add the hadles GridviewInvoice.RowDataBound I get an error that Handles clause requires with events variable.. That is why I left it out. Also since the grid is nested it is not included in the intell-sense I stepped through and the gridviewinvoice rowdatabound never gets touched. Yes...
  5. F

    help with Nested Gridview footer totals

    I am not sure where to place the code so I created a rowbound event for the nested gridview and I am not seeing the results in the footer. Here is what I have in the code behind Protected Sub GridViewInvoice_RowDataBound(ByVal sender As Object, ByVal e As...
  6. F

    help with Nested Gridview footer totals

    I have a nested gridview and would like to know the best way to display the column summary data in the footer of the nested gridview.I am using template column to display the nested gridview and the following code to show the nested records within the master gridview. The parameters are within...
  7. F

    Vs 2005 ASP.net 2.0 sql server 2000 connection problem

    I created an application locally on my pc. I have no problem connecting to a sql server 2000 database that is located on a seperate server. I setup users, roles, rules via security configuration tool. All related information is corrrectly stored in the sql server 2000 database. I run the...
  8. F

    DataGrid in editmode - Dropdownlist periodically loses values

    Hello I Created an editable datagrid with 5 columns as follows: Course ID, Department, CourseName, Component,CourseStatus CourseID is read only Department is read only Coursename - in edit mode is a DropdownList Component - in edit mode is a DropdownList CourseStatus - in edit mode...
  9. F

    Popup page - restrict access

    I have a main page and a popup window that has a file upload control. I want to make to popup window only accessible from the main webpage. How would I do this?
  10. F

    Web User Control

    I am getting a Invalid cast error message. Specified cast is not valid. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details...
  11. F

    Web User Control

    Thank you for responding I do have a question about the following: TextBoxWebform.Text = wuc.tbText can someone explain TextBoxWebform.text I am not sure what or how this works or get it to work.
  12. F

    Web User Control

    "Visual studio 2003 VB.net" I created a simple Web user control. This control contains a Calendar control (calander1) and a textbox (textbox1). The calendar populates the textbox with a selected date. Works fine in the destination aspx page. Now I need to get to the textbox1.text...
  13. F

    What do I need to do to create a VS 2003 asp.net project on xp home?

    I am trying to create an ASP.Net project on a machine on my local network. This machine is running XP home. I want to be able to create projects on my XP home machine and connect to my win 2003 server to test etc. As it stands now I can't even create an ASP.net project on my XP home...
  14. F

    Windows Media Player - Play Song Help

    I finally figured it out Here is the code: Private Sub LoadSongs() 'Use data reader to load Array list from database strSongs = New ArrayList Dim MySQL As String = "SELECT URL from tbl_Jukebox WHERE Active = 'Yes'" Dim objDR As OleDb.OleDbDataReader Dim Cmd As New OleDb.OleDbCommand(MySQL...
  15. F

    Windows Media Player - Play Song Help

    I currently load a static array to play several songs in a row. On frmload I load the array with song path and then use the array to iterate through the songs. I now have an Access database that holds the song information including file path. I also have a datagrid that displays all the...
  16. F

    Windows Media Player 10 Com companent

    That works! Thank you very much!
  17. F

    Windows Media Player 10 Com companent

    The folowing code works for windows media player 7 but no longer works in windows media player 10. These properties have chaged and I am not quite sure how perform the same operations. All I am looking for is how to list the start of a file, end of a file and calculate the current position...
  18. F

    Retrieve Uploaded file from web directory

    I successfully created a webpage that inserts a file path into my SQL server database and stores the file in a web folder named "Data". I have the directory path stored in my database table. Now I need to know how to retrieve that file from a data grid. I currently have a datagrid that lists...
  19. F

    Datgrid - Selected Index

    I am trying to use a function that will display the correct item in a dropdown list. This dropdown list will be used to update a database. Everything is working except the function that selects the appropriate listbox item. Once I add the selectedIndex... I get the following error...
  20. F

    Set focus on Edit TextBox when I LoadGrid()

    I want the screen to open up with the focus set on the edit textbox. If there are a lot of rows in the datagrid it resets back to the top each time. Can anyone help? <CODE> <asp:DataGrid ID="dgKnow" runat="server" OnEditCommand="EditRecord" OnCancelCommand="CancelEdit"...
Back
Top