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 bkrike 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: bind
  • Content: Threads
  • Order by date
  1. 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 =...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. bind

    Writing a trigger on a tbl on insert, to insert data into another tbl

    Hello all, I'm having problems creating a trigger for the following task, I have a table called dbo.users, I'm going to be creating a trigger on this table and in the trigger I need it to grab the newly inserted "UserID" field and put it into a variable called @UserID. Then I have to do a...
  8. bind

    CREATE TABLE using @Variables?

    Is it possible to use CREATE TABLE using a variable ? Heres my example source however obviously its not functioning properly. DECLARE @CurrDate AS DATETIME SET @CurrDate = (SELECT DATEADD(Year, 1, GETDATE())) CREATE TABLE @CurrDate (NASIdentifier varchar(16), NASPort varchar(10)...
  9. bind

    Moving Database to another Database.

    I have a Microsoft SQL database thats rather large in size and I need to come up with a store procedure to move this database by the year and month. for example SELECT * FROM plat_calls.dbo.calls where calldate >= '2001-01-01' and calldate < '2002-02-01' I need to somehow break this query up...

Part and Inventory Search

Back
Top