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: intrex
  • Content: Threads
  • Order by date
  1. intrex

    .net 2.0 Encryption Problem

    Hello, I had some very simple encryption methods that I was using in .net 1.1 to encrypt data to a database then decrypt it for use in the application. Now everytime I make a call to decrypt data I get an error "Bad Data" //Byte array for encryption methods private Byte[] KEY_64 = {...
  2. intrex

    SQL Server 2005 Encrypted connection between client and server

    Hello, I am using a hosting service for sql 2005 server and a .net 2.0 web application. I am hoping to be able to send some of the data to the database from a remote location. This data is very sensitive so I need to be able to encrypt the connection between the remote server and the sql...
  3. intrex

    asp.net 2.0 login controls

    I am ramping up on a new project with asp.net 2.0. I started designing the security system then realized that microsoft has built all of these login user controls for 2.0. I started diging around and experimenting with them some. I now have a very simple working web security system...
  4. intrex

    Modify Infoview parameter prompt screen

    hello, I am having a terrible time trying to make changes to the layout of the parameter prompt screen in InfoView. I am using Crystal Enterprise XI (.net on IIS). I have dug through all of the code and I can't find anywhere that actually generates this page. Is this something that is...
  5. intrex

    xsl problem

    I am having a problem making an xslt template to pase a small xml file I have. I am passing the xslt file one parameter. I want to use this parameter to match a node that has the parameter in it then loop through its children. the xml file looks like this. <HEADER> <LINK...
  6. intrex

    DataGrid change selectedindex with javascript onclick

    Hello, Has anyone been able to use a javascript onclick event to change the selectedindex property of a datagrid?
  7. intrex

    Database integration?

    Hello, I am starting on a project to syncronize some data from 2 different mssql databases that have different schemas and field types. In the past my company has been doing this with sql jobs and stored procedures or triggers. There are several problems with this method. From all of...
  8. intrex

    Merge replication question

    Hello, I am fairly new to merge repliction. I am trying to keep data synchronized between 2 databases that have completely different schemas. Is merge replication flexible enough that it will allow me to map fields in each database that I want merged? I have a few other ideas of how to do...
  9. intrex

    DataGrid Paging Question

    I am trying to do something that seems very common sense, but it apears that C# doesn't allow in DataGrids. I would like to have a pager style of <prev (1) next>. The number in the middle of the paging arrows would be the current page that you are on. Am I missing something or is this...
  10. intrex

    DataGrid Paging?

    I am trying to do something that seems very common sense, but it apears that C# doesn't allow in DataGrids. I would like to have a pager style of <prev (1) next>. The number in the middle of the paging arrows would be the current page that you are on. Am I missing something or is this...
  11. intrex

    Manually adding data to a datacolumn in a datatable

    I don't understand why I can't add data using any of the following calls. dc = new DataColumn("par_value"); dc.AllowDBNull = false; dc.DataType = System.Type.GetType("System.String"); dc.Caption = "par_value"; DtParam.Columns.Add(dc); //add a new row with datavalues...
  12. intrex

    setting properties in a contructor

    I am getting an error message that is throwing me for a loop. Basiclly I am setting the value of a bool property in the constructor of a class (the same class that the property is in). As soon as I try to set the value I get Exception of type System.StackOverflowException was thrown. The...
  13. intrex

    Datagrid DataSet DataTable maddness

    Hello, I have been working on a data problem for a little while now. I am looking for some good direction of where to go from here. I created a SqlDataAdapter, SqlConnection, and a DataTable. I instantiate my SqlAdapter with a storedprocedure and my SqlConnection. Then I populate the...
  14. intrex

    Crystal 9 default parameter for current date

    Hello, I am using Crystal Enterprise 9. Is there an easy way to make a date parameter default to the current date (without writing custom code to generate the date and passing it back to the report). I am using the standard ePortfolio to post reports. Thanks in advance,
  15. intrex

    sorting multiple arrays

    I have several arrays that I am using to build a table. Each array represents one column of data for the table. I have gotten to the point that I want to enable users to be able to click on a table header and sort all of the data in the column corresponding to that header. Does anyone know of...
  16. intrex

    System.Net.GetHostByName Timeout?

    The default timeout for this method seems to be around 10 seconds. Is there any way to change this?
  17. intrex

    Using classes in different projects?

    Hello, I have written a solution that consists of several projects. I would like two of my projects to be able to instantiate the same class. Right now I am only able to instatiate a class when the class file physiclly resides in the project instatiating it. Is there a way to make class...
  18. intrex

    Easy question

    what do the % and & symbols mean when used as below dim val as integer dim value as long val% = value& And 10
  19. intrex

    Event log problems

    Hello, I am writting a multithreaded server applicaton that logs all of its information to the event log. I would like to create custom categories for the servers events. It seems the only way to do this is to create resource dlls. Then manually write registry keys to tell the event log to...
  20. intrex

    text file parsing question

    Hello, I have only been working with php for about 2 hours now so bare with me if I type something stupid. I am trying to open up a remote text file, parse the file, and output the parsed text as html. As of now I can open the file read characters into a buffer and then output them as...

Part and Inventory Search

Back
Top