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

    localhost with IIS

    Cannot access IIS over localhost on win2k server ... works fine when i use external IP .... why is localhost not available in assigned IP selection list? Thanks
  2. enigma333

    Binding to Properties

    Can you bind a control to the properties of an object ... Kind of like the Datasource class from vb 6
  3. enigma333

    Creating Custom Controls

    I need to make a control which is simply a text box and a label .... I want the user control to have all the same properties, events , and methods as a textbox but to expose a Caption Property which will map to the text property of the label .... How do I do this other than creating a property...
  4. enigma333

    thread control?

    Yes but I do not know how to do the sleep function other than thread.sleep .... so either I have to determine the main thread (not started by me) or use another method of sleep. Thanks
  5. enigma333

    XML and Flat File

    Can't do with sql server was hoping for some sort of xslt transformation
  6. enigma333

    thread control?

    I'm and trying to create a program flow as follows Connect if failed wait 30secs else Continue Retry Connect if connected then process basically i need to call a function that will retry a number of times at a particular info and then when it is successful resume the program flow. I know a...
  7. enigma333

    XML and Flat File

    Need to convert from a Text file with fixed-length records to XML with vb.net. Then I need to read the field values and convert it into a different fixed-length record text format. Any examples of this ... or is there a better way. p.s. the file record specs must be definable at run time thanks
  8. enigma333

    XML to Delimited Text

    Need to ouput a recordset XML to a delimited Text file RS = rsField1 rsField2 rsField3 Text = field1|field2|subfield1^subfield2|field3| Transform field2 = rsfield1 field1 = rsfield2 subfield1 = left(rsField2,2) Something like that ... if that makes any sense to anyone Basically I have to...
  9. enigma333

    Fixed Length Records

    What's the best way to deal with fixed length records reading/writing to files. in vb6 you would use UDT's and LSET new functionality in .net?
  10. enigma333

    Date Range Param from VB

    VB/ Crystal 8.5 / Direct ... Problem is VB produces a DateTime not a Date ... using Datetime in the report resolves errors. I suppose the real question is how do i change a datetime to a date in VB .... Wrong section I suppose
  11. enigma333

    Date Range Param from VB

    I need to fill a Crystal Date Range Parameter from VB. What is the syntax?
  12. enigma333

    Column Level Security

    Wanted a different way that would require fewer views .. a lot of different users to maintain so views will become tedious
  13. enigma333

    Column Level Security

    Is there anyway to use column level security but instead of an error when attempting to select a column with no permission I want to have it just not appear. i.e. Give access to 3 of 5 columns then when you do a SELECT * FROM TABLE you get just those 3 columns Any thoughts. Thanks
  14. enigma333

    controls collection Index

    I was hoping to avoid looping through each one. There's no direct way for this?
  15. enigma333

    controls collection Index

    How can i determine the index of a control in the controls collection given the name.
  16. enigma333

    Drag and Drop Grid

    I need to drag and drop a cell of a grid but i would like the mouse icon to be a cell icon with the contents of the cell that's being dragged. Any suggestions
  17. enigma333

    Textwidth Method

    I need to determine the width of a string as displayed on the screen.... i.e. the number of twips it takes to display ... must show correct for font & fontweight. Textwidth alone gives inconsistent value Any Thoughts... Basically i want a label to autosize to contents and account for changes...
  18. enigma333

    Checkbox Validation

    Really i want to call the validate twice ... ideally prevent the first call and make it happen only once by my definition but if i could just make it happen then i'd be a happy kid. Maybe not possible ... Thanks for all the good input though
  19. enigma333

    Checkbox Validation

    Great that part helps ... now the question is how do i make the validate event occur after the mouseup ... i.e. After MouseUp( after value has changed) i would like the control to be validated again ... this will cause the bound field to be updated immediately after the value is changed ...
  20. enigma333

    Checkbox Validation

    There must be some way to make the control validate on click ? or not?

Part and Inventory Search

Back
Top