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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bind

  1. bind

    Converting vbscript.asp to c#.net(4.0)

    Jason Meckley, Perfect, that's exactly what I needed to get a start on this. Thank you sir, much appreciated.
  2. bind

    Converting vbscript.asp to c#.net(4.0)

    Hello, Would anyone be willing to assist me in converting the following web form into c#.net(4.0)? I've been working on this for a while now, just can't seem to get it working properly. Thanks a lot all. <% sub ListFolderContents(path) dim fs, folder, file, item, url set fs =...
  3. bind

    Limiting results from query, unique but not?

    r937, Thanks for your reply but that's not yielding the result I'm looking for. Cheers.
  4. bind

    Limiting results from query, unique but not?

    Hello, I'm trying to just return the last number in this row but unique. So for example in the row "number" below, I just want 1180237, 2063287 and 3047576 to return on the query, is there any way of returning the top unique number for all numbers contained in a row? Not sure how else to ask...
  5. bind

    non repeating random number gen - Listbox.items.contains broken?

    Thanks a lot for the feedback guys, you helped me come up with a more efficient, proper way of doing this. Cheers.
  6. bind

    non repeating random number gen - Listbox.items.contains broken?

    Tried your suggestion, (thanks for the advise) however, the problem remains, I'm also having a secondary issue where if there's 1 number left in the list to generate, the application will go in it's loop endlessly, never generating the last integer, not sure why this is happening either...
  7. bind

    non repeating random number gen - Listbox.items.contains broken?

    Greetings! I'm having a bit of trouble with my Non repeating random number generator, basically this function will grab a start and ending number and generate random numbers between the start and end point. private void GetRandom(int start, int max) { start...
  8. bind

    Refreshing a DataGridView after using ds.Tables[&quot;Table1&quot;].Rows.Add?

    The dataGridView1.DataSource = ds.Tables[0]; line worked! I don't understand though, why would you have to refresh the datasource after entering data, wouldn't it make sense that after binding a datagridview to a datasource, anything entered into the datasource after would automatically...
  9. bind

    Refreshing a DataGridView after using ds.Tables[&quot;Table1&quot;].Rows.Add?

    Tried, dataSet1.AcceptChanges(); Nothing, still doesn't populate the changes in the datagridview. Thanks for the info though.
  10. bind

    Refreshing a DataGridView after using ds.Tables[&quot;Table1&quot;].Rows.Add?

    I also forgot to add, I have a load button that will load the contents of the XML file to the datagridview using the following code: XmlReader xmlFile = default(XmlReader); xmlFile = XmlReader.Create(Environment.CurrentDirectory + "\\points.xml", new XmlReaderSettings()); DataSet...
  11. bind

    Refreshing a DataGridView after using ds.Tables[&quot;Table1&quot;].Rows.Add?

    Greetings all, So I have this issue I can't figure out and I'm hopeful one of you will be able to assist me with this problem. I have a Windows form with a DataGridView and a "dataSet1" dataset. The DataGridView is bound to the DataSet1 and in the DataSet1 properties under tables I added a...
  12. bind

    Problem with transparent textbox, NULL_BRUSH, flickering.

    Forgot to add, if more of the source base is needed for assistance in solving this issue, I will gladly post the full source code here. Thanks again all!
  13. bind

    Problem with transparent textbox, NULL_BRUSH, flickering.

    Hello Experts, I'm experiencing an issue I've spent hours on google researching a solution for and have come up with nothing of use. I'm capturing the following events for two textboxes and attempting to make the background of the textbox (IEdBoxEditor) transparent. case...
  14. bind

    Cannot access a non-static member of outer type via nested type

    forgive my ignorance, would you be so kind as to show me an example of the above applied to my project? thanks again
  15. bind

    Cannot access a non-static member of outer type via nested type

    Hello Experts, I'm desperately seeking assistance with this issue I'm having. I'm getting the following error: Cannot access a non-static member of outer type 'BindsTools.PortScanner' via nested type 'BindsTools.PortScanner.PortScannerr' I've been banging my head against a wall, I've looked...

Part and Inventory Search

Back
Top