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. NatGreen

    FusionBindError

    ActiveX Control (written in .Net) and ASP .NET Problem <OBJECT id="MyDriver" classid="MyInterface.dll#MyInterface.MyCall" name="MyDriver" VIEWASTEXT></OBJECT> The application runs fine on my test web server, but I when I move it to production, I get the fusionBindError. I have done the...
  2. NatGreen

    Crystal Reports .Net and AS400 DB2 Connection Error

    I'm trying to use Crystal Reports & ASP .net to do a simple report using data on an AS400. The report has 3 parameters. I am using the IBM OBBC driver. In the Add Command feature of crystal, when I hard code the values it works, but when I setup parmeters, the query fails and I get the message...
  3. NatGreen

    Nested Datagrid Question

    Unfortunately that didn't work. Sees as if it can't find DataGrid2 reason. Thanks. NatGreen
  4. NatGreen

    Nested Datagrid Question

    I am having a problem finding the child datagrid from the Parent update command. I would like to loop through the values to do some validation. Public Sub DataGrid1_UpdateCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles...
  5. NatGreen

    Single Sign on - HttpPost question

    I am trying to create an interim single sign on solution and I would like to automatically fill in the username and password on fomr forms. I need to simulate the login process for the user. I looked at www.webzinc.net, which would work, but is more than what I need right now. Is there anyway...
  6. NatGreen

    Quick formatting question

    I would use a case statement inside the SQL sp SELECT Firstname, LastName, CASE IsActive WHEN '0' THEN 'No' WHEN '1' THEN 'Yes' END FROM UserInfo Regards, NatGreen
  7. NatGreen

    How to Maintain User Control State

    Since your table is fully generated through code you will need re-add the rows after each postback otherwise you will only have the current row. Dynamic Web Controls, Postbacks, and View State : http://aspnet.4guysfromrolla.com/articles/092904-1.aspx
  8. NatGreen

    How to Maintain User Control State

    what do you mean by "All of the other asp.net controls maintain state, why doesn't the user control?" are the other controls added dynamically also to tblDetails or just the user control? It seems as if the problem may be with how you add the user controls to the page, not the user controls...
  9. NatGreen

    How to Maintain User Control State

    The probelm may be with your session value. I would put in a break point within your routine to check the value of i everytime you are attempting to add a control, it may be that you are adding the same control multiple times. Try this: Private Sub AddESOItem() Dim tCell As New...
  10. NatGreen

    SkmMenu and IFrames

    Has anyone ever used the skmMenu w/ Iframes? If so could you supply an example? http://www.skmmenu.com/menu/ Thanks in advance. NatGreen
  11. NatGreen

    MSMapi control

    nlkflynn777, There are many ways to simply generate and send emails from .NET. If you are wanting to stay with using the MSMapi32.ocx control, here is a an article that gives an example. http://www.codeproject.com/dotnet/activeXnet.asp?msg=764767 Hope this helps, NatGreen
  12. NatGreen

    Javascript and DataGrid

    You could use a template column or the hyperlink column: 1. <asp:TemplateColumn> <ItemTemplate> <asp:HyperLink runat=&quot;server&quot; Text=&quot;View&quot; NavigateUrl='<%# &quot;tiViewTransLst.aspx?OrderID=&quot; & Container.DataItem(&quot;OrderID&quot;) & &quot;&OrderName=&quot; &...
  13. NatGreen

    Getting Crystal to work..?

    It depends on how you set up your report. First I create the report from a stored proc in SQL and save it w/out the data. Here is a snipit of code I use to run it from .NET: ' To be able to get the values in web.config Dim MachineType As String =...
  14. NatGreen

    Does anyone know of a resource for code design / best practice advice

    http://msdn.microsoft.com/asp.net/using/migrating/jspmig/phase2/bestpractices/
  15. NatGreen

    Sorting a datagrid

    Try putting your sort expression in your columns: i.e. <asp:BoundColumn DataField=&quot;ext_file_name&quot; SortExpression=&quot;ext_file_name&quot; HeaderText=&quot;File Name&quot;>
  16. NatGreen

    Passing Paramaters Help.

    can you post the code you are currrently trying to use?
  17. NatGreen

    Passing Variables from Code Behind page

    what are you going to use the variable for once you get it back to the clientside?
  18. NatGreen

    Web Control not showing up

    If you can do a view source on the page and you see the control in the html then perhaps your ISAPI extensions aren't set up correctly. To fix them, you need to run &quot;aspnet_regiis.exe -i&quot; at the command prompt. more info can be found here...
  19. NatGreen

    Looking for good ASP.NET spell check control...

    Jspell is a good one. www.jspell.com
  20. NatGreen

    Dataset and Crystal 9

    Dataset and Crystal 9 I am creating a web application written in ASP.NET and would like to include reporting capability using crystal 9. I would like to use my current data access layer and bind my reports to the dataset that is returned. Does anyone have an example or know of a good article...

Part and Inventory Search

Back
Top