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 Mike Lewis 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. rwbean86

    How do I share memory w/ another process??

    Does .NET allow shared memory across processes? Does the FCL have any functionality for this or do I have to use API calls in PInvoke?
  2. rwbean86

    Property Database doesn't store all properties

    I got it working by writing only a few properties at a time. This example writes 2 records. There ought to be a better way to do it, but this works. Here is the code: //write a full record to the dispatch database CEPROPVAL propval[5]; CEOID ceoidRec; //phone propval[0].propid =...
  3. rwbean86

    Property Database doesn't store all properties

    I use a property database to store a few simple records. I create records using CeWriteRecordProps and read them back out using CeReadRecordProps. CeReadRecordProps gives me back fewer properties that I'm writing out. Some properties are missing. I see in searching various messageboards that...
  4. rwbean86

    Iterate through datagrid controls

    Zarcom makes a good point. Supper would be nice. I have found 1 more caveat to the way I solved my problem. If you do access a cell's controls directly you might find that it has no controls!! This seems to be the case if a column doesn't support editing. In that case the cells themselves...
  5. rwbean86

    Iterate through datagrid controls

    Link9, It would be much easier to use FindControl, but since I'm using the TemplateColumn feature I'm not sure how ASP.NET would ID each checkbox control. Could I specify ID="MyCheckBox" and then call FindControl("MyCheckBox_1"); FindControl("MyCheckBox_2")...
  6. rwbean86

    Iterate through datagrid controls

    I really appreciated the suggestions. The article on Datagrids is good. However I was able to get the syntax myself via trial and error. Here's how I did it: ControlCollection CellCtlCol;//control coll for a cell. CheckBox CheckCtl;//represents the checkbox in the grid's row...
  7. rwbean86

    Iterate through datagrid controls

    Thanks for the suggestion, but System.Web.UI.WebControls.DataGrid doesn't have a Rows RowCollection.
  8. rwbean86

    Iterate through datagrid controls

    I have a datagrid with a template column. The template column contains check boxes. I want to examine all the checkboxes at once when my form posts back to the server. What is the syntax for iterating through a grid's checkbox controls to find those that have been checked?
  9. rwbean86

    TEXTBOX for inputing TIME(can I have fixed chars??)

    The best ideas are the simple ones. Thanks Mark
  10. rwbean86

    TEXTBOX for inputing TIME(can I have fixed chars??)

    I want to write/find an ASP.NET text input control similar to the one through which Windows allows users to change the time on a PC. I know how to write very basic ASP.NET web controls. I could just ask the user to input the time in a certain format then parse the text and extract the time...
  11. rwbean86

    How do I give write permission?

    Maybe this isn't the right forum to ask this, but since I can't find an IIS forum here goes. I'm debugging my web pages on my localhost server. I'm trying to create a file in my virtual directory, but IIS isn't allowing me write access in that directory. How do I give myself permission to...
  12. rwbean86

    I need authentication advice

    I'm new to web programming and ASP.NET. I'm creating a site that allows a few management types to have access to business data via the web. So I don't need to store zillions of usernames and passwords. I want to store them with a web.config file, and I want to use either SHA1 or MD5 to...

Part and Inventory Search

Back
Top