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 strongm 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
  • Order by date
  1. N3XuS

    if statement in eval binding

    Beg to differ ... formview/objectdatasource pushes in the other direction. Using bindings and evals makes it ever so clear. Combined with good use of custom controls the pages are so much more readable. I hated having to fill up my textboxes and labels from code behind , always forgetting a few...
  2. N3XuS

    How do you clear (repopulate) a checkedlistbox

    You're not rebinding after fillCLBPosDel --> CLBPosDel.Databind()
  3. N3XuS

    Local Profile for Machine Account?

    1: It'ld be cleaner to run your application with a custom account. This way you're sure under which account your application is running. Create a local account on your computer and add <identity impersonate="true" userName="CustomUser" password="CustomAccount"/> under <system.web>, make sure the...
  4. N3XuS

    Web Application

    To have different visible layout from the one that you print you can use print stylesheet like so : <link rel="stylesheet" href="print.css" type="text/css" media="print" /> This will most likely not suffice, since you cannot control the margins etc ... the only way to control these margins is...
  5. N3XuS

    HEAD eleement or ScriptManager what is differenecs

    check that you referenced the jquery js file correct. Download fiddler, it'll show you what the page gets (like images, js files ...). Most likely the reference is broken. When you reference files from the HEAD tag you are writing pure HTML, whereas when you're including it using the...
  6. N3XuS

    if statement in eval binding

    You can't put server script tags in the Text or Navigateurl property of asp:hyperlink. If it's nescessary to use markup to bind the data, use the HTML href and <%= %> to fill in the "src". Aside from that use : ResolveUrl(Eval("fileName")) or resolveclientUrl() for public sites to get the full...
  7. N3XuS

    Click Once - Change installation folder?

    Is it an MSI installer ? MSIEXEC and msi.dll have parameters for the installation directory . http://msdn.microsoft.com/en-us/library/aa367988.aspx
  8. N3XuS

    dateTimePicker1 Equals DateTime.Now

    DateTime.Now returns the time as well. Your datetime picker is returning only the date I assume. They'ld have to pretty lucky to select the correct millisecond :p
  9. N3XuS

    Web User Controls not working well together....

    If your multiview is causing a postback, and you set the visibility of other controls with javascript, you have to set the visibility again after postback. The state of your other controls is not saved in viewstate if it is set through javascript.
  10. N3XuS

    Preventing double click

    here is what I use: I don't have time to explain atm. the function incorporates my entire menu button behaviour. Including double click prevention, but it also disables all buttons in the designated div while posting back. The C# function: public static void PreventDoubleAndMenuCLick(Control...
  11. N3XuS

    Session independant threads.

    I was baffled by the fact that my thread kept getting killed when my session ended. I just migrated from IIS 5 to 6 , it used to work in IIS 5. So I checked every single recycle thing, turned on logging on recycling for windows events costed me 10 hours or so :p ... after many hours - threads...
  12. 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
  13. 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
  14. N3XuS

    Selecting wrong dates :s

    Didn't know about the #-american thing. Anyhow, eventually did as you said and split it all up. Works fine now, thanks :)
  15. 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...
  16. N3XuS

    Can't find my function lol

    What the ... it appears VS doesn't search the text in a #region ... not even the title of that region. Fixed
  17. 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 ?
  18. N3XuS

    Regex, different matches in 1 result

    Aight looked up the function and made sumthin to test: If intMode = 3 And dtParameters.Rows(j).Item("ParamId") = 12 Then Dim RegexObj2 As Regex = New Regex("BODY") Dim myDelegate As New MatchEvaluator(AddressOf...
  19. N3XuS

    Regex, different matches in 1 result

    Ah I have a good example: if you have ea. opeenrodepaddestoel I'ld like oppaddestoel, with "eenrode" left out of it.
  20. N3XuS

    Regex, different matches in 1 result

    Ok I get how the lookaround works :) Thing is it'll give me 2 seperate matches for height and width, what I need is both numbers in 1 match :p

Part and Inventory Search

Back
Top