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

    Session independant threads.

    hi, Is there any way to create and start a thread that will finish it's work even when the user logs out or the session expires? Thanks
  2. N3XuS

    Running Web Service on IIS 5.1 windows XP Pro

    I need to run webservices without installing the framework on a windows XP Pro system. webservices aren't available in IIS 5.1 it seems, is there any way to fix this ? many thanks
  3. N3XuS

    Selecting wrong dates :s

    I've been looking everywhere on the net, I don't see what I'm doing wrong. My query is SELECT link,datum,IP,type FROM visipro2 WHERE datum > #2007-03-08# AND type = 'email' order by datum desc It doesn't only return the dates in march, but 3-oct. shows up as well. link datum IP type...
  4. N3XuS

    Can't find my function lol

    Well I made a function some time ago. It's a huge class in the form_load I call fillSearch() ... and I can call it, it works. I just can't find it anymore. I only have 2 .vb files, I searched through entire current project and it certainly isn't located in a dll. How is this possible ?
  5. N3XuS

    Regex, different matches in 1 result

    is it possible to write a Regex to join the different matches in 1 result ? ea. I wanna find height and width of a fridge but they're not right behind each other. ea <ID=height>Height = 10</ID>blah blah blah blah blah<ID=width>Width = 30</ID> I just need height = 10 and width = 30 joined in 1...
  6. N3XuS

    Form loads blank while design is full ...

    Suddenly my entire layout was gone.. so I redesigned it in the same project since the code was still there. Now when I compile I just get the standart square ... blank. Can't even set the name of the form it'll end up ... blank.
  7. N3XuS

    Images broken after upload.

    When I upload my images with my VB.net application using the FTPClient on http://www.ftpclient.co.uk/ the images once online don't show. When I download them again, I can't see a thing, they are just faulty. Adobe Photoshop says the JPEG marker is unknown... So basically the upload component...
  8. N3XuS

    Regex makes for each loop go bananas ??

    The code below never triggers the text "out of loop" in txtTest. The program doesn't seem to crash either, it just doesn't execute the code after the for loop. When I comment out the Regex stuff the code behind the for loop is executed. Can anyone help me please, I'm riddled :s For...
  9. N3XuS

    ok why does a week start with sunday ...

    I don't know but here weeks "start" on monday. So that's the order i Place the checkboxes in where you can check on which days you want to place something on the calender (can do this biweekly etc for x weeks), but by default sunday = day 0 and not monday. This is really anoying to work with. I...
  10. N3XuS

    Custom validator not being checked on Update :s

    I made a custom validator to check if there's items in a listbox. I have a whole bunch of other validators on the form so I don't wanna mix client and server side validation, and since the standard validators all are client side I want my custom one to be client side as well. The only problem is...
  11. N3XuS

    Layout of dynamic controls in placeholder.

    Been looking for this one for a while now, how to layout dynamiccally created controls. Found some C# sharp which looked like this Form1.Controls.Add( new LiteralControl("\r\nWhat is your name?\r\n")); TextBox TextBox1 = new TextBox(); ... Finally I got the picture lol, gotta actually put...
  12. N3XuS

    find closest dealer ?

    I have to make a page where a user can enter a zipcode and it displays the closest dealer... haven't the slightest idea how to start making this without endless input of how far each zipcode is from one another lol ... Anyone know how I can get a distance between 2 zipcodes from some kind of...
  13. N3XuS

    Checkboxes in 2dimensional array

    Dim chkWeek(6)() As CheckBox For j = 0 To 6 For i = 0 To 23 Dim chkBox As New CheckBox chkBox.Text = i chkBox.Width = Unit.Pixel(40) chkWeek(j)(i) = chkBox I get an error Object reference not set to an instance...
  14. N3XuS

    Updating from datagrid :s

    I'm using the following event handler ... which is triggered. Private Sub DataGrid1_UpdateCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles DataGrid1.UpdateCommand Dim txtTb As TextBox txtTb =...
  15. N3XuS

    Returning a Strin from SP ?

    I have the following stored procedure. ALTER PROCEDURE dbo.GetTree @id int AS DECLARE @parent int DECLARE @iLink nvarchar(50) SELECT @parent = parent from tlkpnavigation WHERE id = @id IF @parent = 0 BEGIN SET @iLink = '@id' END ELSE BEGIN SET @iLink = '@parent' END...
  16. N3XuS

    Problems updating from datatable changes...

    I writing a database communicatio class, I can get data out of it and return a dataTable but I can't give it back to update. Public Function sSelect(ByVal strStoredProc As String) As DataTable Dim mySqlCmd As New SqlCommand(strStoredProc) Dim daDataAdapter As New...
  17. N3XuS

    how to get the sqlDbtype ???

    I'm writing a function to get the members out of an object and using them as parameter for a stored procedure. The problem being I don't know how to get the sqlDbType from the object... is there any way to do this ?? Many thx
  18. N3XuS

    optimized update procedure.

    I have a procedure to update some values in a table. My question is if it's best to check if a value has changed before updating it, or if SQL already does that by itself. How does MS SQL go about updating a lot of values even if they didn't change. I'm just using this atm.. ALTER PROCEDURE...
  19. N3XuS

    Dynamic object propertys

    I'm mega noob in ASP.net. What I'm trying to do is read an XML file and make an object of each record. Thus getting the propertys from the XML file and set them accordingly then put the objects back in an array. The prob here is how do I dynamically create the propertys from the data in the...
  20. N3XuS

    Trouble getting value from checkbox in Iframe

    I have 3 inline editors on one page, and I'm trying to prevent that they can be submitted when they're in source-mode. In the source of the editor is a checkbox <input class="checkbox" type="checkbox" name="switchMode" id="switchMode" onclick="setEditMode(switchMode)"> The source of all 3...

Part and Inventory Search

Back
Top