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

    Implementing a website search. Where do I look?

    Hi, I will need to implement a website-search system of some complexity very soon, and I'm researching what my options are. Ofcourse, that means either develop it myself, or buy a third party solution. Unless it's easy to do (which I doubt, considering the scale of the website in question), I...
  2. kristof

    IE DropDownList, weird behaviour

    Hi, I'm populating an asp:DropDownList from a DataSet, and I get a very weird result. I have this number (0099471468240) that gets shown like this: ' 009... ', within the dropdown. Although in code, it clearly is what it should be: 0099471468240. Now the weird thing is that it works...
  3. kristof

    Occassional (and unpredictable) 'Could not find stored procedure' erro

    Hi, We (the development team) get a re-occuring occassional error: Error : System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.OleDb.OleDbException: Could not find stored procedure 'sp_***'. (pageinfo ...) --- End of inner exception stack trace...
  4. kristof

    GDI+ Bitmaps, potential canvas(es)

    Hi, Which controls within ASP.net can contain, and display, a Bitmap object, other than the Response.Outputstream (ie, the page itself)? I'm doing some GDI+ drawing on a Bitmap object, which I like to pass to a valid receiver. It would make sense to me that for instance an asp:image can...
  5. kristof

    Static class vs Session object

    Hi, Am I correct saying that with ASP.Net, a static class, is basically a single server object, that is active across sessions? Meaning that if I set a value of a static class, all sessions will read the same value. But that means that if one user's session sets this value again with something...
  6. kristof

    401: Unauthorized error with a web service

    Hi, I have a Web service with basic authentication active on IIS, to which I pass a NetworkCredential object: NetworkCredential objCredential = new NetworkCredential("UID", "PWD"); myWebserviceObject.Credentials = objCredential; On my local test solution, everything works fine. Yet, on...
  7. kristof

    Parsing XML tag with attribute

    Hi, I'm using ReadXml() in combination with a XmlDataDocument and have an incoming XML tag like this: <phonenumber type="1">somephonenumber</phonenumber> So, I have this: XmlDataDocument xmlDoc = new XmlDataDocument(); int i = 0; foreach (DataRow row in doc.DataSet.Tables[0].Rows) { ... }...
  8. kristof

    Error: &quot;The request was aborted: The request was canceled&quot;

    Hi, I got this error on a WebRequest.GetResponse(): "The request was aborted: The request was canceled" Any idea what this can be? It's on an application that used to work ...
  9. kristof

    Effective maximum rows per table

    Hi, I'm wondering what the actual manageable maximum amount of rows per table is in SQL Server 2005. If I can believe this link: http://technet.microsoft.com/en-us/library/ms143432.aspx, the theoretical maximum is limited only by 'diskspace'. But I imagine that the effective maximum is...
  10. kristof

    Bulk update from .csv file

    Hi, I will need to process a .csv file, and use the data to update certain columns of existing records (of one table). I expect the csv to have about 350K+ lines, so updating line per line, sending single update statements, would take ages. Any ideas?
  11. kristof

    Server.MapPath error after publishing a website project

    Hi, I have an ASP.Net website on my local drive, which I published using the publish functionality (VS 2005). I use Server.MapPath throughout my entire solution, yet it seems to have written the local path into the bin dlls. It definitely hasn't changed anything according to the new path...
  12. kristof

    Export to Excel

    Hi, I'm looking into different ways to export data to an Excel sheet. Speed and editability are the main priorities. Anyone have any links/tips/suggestions, so I can look into it and decide which is best for me? Thanks PS: Not asking for code at this point, just ways to do it.
  13. kristof

    Finding multiple occurances of a reg exp pattern

    Hi, Suppose I have a string like: (A)((B)(C)) I need a pattern that looks for strings within ( and ), so that should return: (A) ((B) (C)) (B) (C) This is the code I have now, but I have no idea about what pattern can do that: Dim oRegExp As New...
  14. kristof

    Internet client/server and sockets

    Hi If I want to write a program that allows communication with myself and someone who has the exact same program, but is somewhere else (not on the same network), what is the best way to do this? Is a client/server socket set-up enough? And, how can I reach the local IP (of the PC of the...
  15. kristof

    Writing strings with stream

    Hi all, I'm using this to write a string to file: Dim myFileStream As New FileStream(sFilename, FileMode.Open) Dim swStreamWriter As New StreamWriter(myFileStream) swStreamWriter.Write(script) swStreamWriter.Close() myFileStream.Close This works fine, except that it adds &quot; to...
  16. kristof

    Jump to a line within a RichTextBox

    Hello, Within a RichTextBox I wish to be able to search for certain keywords and when the keyword is found, jump to it so that the RichtTextBox displays the according line on which the keyword I'm searching for was found. (No need to highlight the keyword itself) Any clue on how I do this? Thanks
  17. kristof

    Performance question

    Hi, Where can I find good documentation on how to increase the performance of an SQL Server database? Thanks
  18. kristof

    DDHelp crash question (and memory)

    When I run my DirectX (8.0) programs for the second time, it crashes over DDHelp (guess that's DirectDraw) 'New' commercial games like Morrowind also crash occasionally. The same programs run fine on the computer of a friend of mine. So, I guess this means the memory of my PC is too...
  19. kristof

    2 Questions

    Hi all, 1. How do I retrieve the full path of the directory your application is running on? I am using GetApplicationPath but it makes the directory names shorter using ~ (8 character notation) and that seems to give errors. What I want is the full, actual path. 2. Is it possible to stop the...
  20. kristof

    Got a strange problem

    Hi all, A basic program my friend has written and has never crashed on his PC, makes my own crash at the second time I open it. This usually makes me think it is something that doesn't get released properly, but it has never crashed on his pc, like I said. And we have reasonably comparable...

Part and Inventory Search

Back
Top