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!

Search results for query: *

  • Users: SBGibson
  • Content: Threads
  • Order by date
  1. SBGibson

    IE6 SP1 Freeze on syncronous send

    Hi everyone, I'm developing a small ajax functionality and it works well in IE6 sp2, IE7 and Firefox. It only have to call a webpage in background, nothing special. With IE6 SP1 (I'm still investigating if it's some particular version) when I call Send the browser freeze, for a couple of...
  2. SBGibson

    Popups after postbacks

    Hi guys, I asked in another forum and I've been redirected here. I need to open e popup to show an attached document that the user have selected. The problem it that I need to perform some check before opening that document so I placed a button that on postback, after some operation, writes a...
  3. SBGibson

    Avoid popup blocking after postbacks

    Hi guys, I've a big problem. I need to open e popup to show an attached document that the user have selected. The problem it that I need to perform some check before opening that document so I placed a button that on postback, after some operation, writes a window.open to show the document. The...
  4. SBGibson

    Custom control, change default property

    Hard to explain. When I develop a custom control I've to override render methods in order to change the output. But, if I only want to change the rendered value? Let's say I want to build a textbox that takes it's "value" attribute not from "text" propery but from ... Tooltip, without having to...
  5. SBGibson

    Microsoft Security Advisory 912945 and PDF in IE

    Hi guys, As many of you should know M$ has released a patch that generate problems with active contents in IE. Reading MSDN articles the patch should block activeX contained in OBJECT and EMBED controls in HTML. The user can click to activate the object at it should work, but I found that the...
  6. SBGibson

    Manage Word document on the fly

    Hi guys, I talk about a well know problem. Sometimes happens to necessary have to manage word documents with an asp.net application. We know well that M$ suggest to avoid using MSOffice as a server and aspose.word costs 10k $ for royalty free license. What we can do? There's some cheaper...
  7. SBGibson

    Vt220 Terminal Emulator

    Hi to everyone, I need to interact with a server using the vt220 protocol. I can simply interact but the best would be to offer e complete vt220 terminal emulator. I searched for opensource components but I found only commercial components. Make a component of my own seems to be an heavy...
  8. SBGibson

    Force rollback after lock

    Hi guys, I've a strange situation using oracle with the .Net provider. 1. I open a transaction 2. I LOCK a table 3. The network have a failure (I force it unplugging the cable from the adapter) 4. The transaction and expecially the lock remains there for an indefinite time and I can do nothing...
  9. SBGibson

    DDEExecute Error

    Hi guys, I've an access programs that makes MSword mail merge using DDE actions. It works on many PCs but suddenly, on one of them, now I get a error 285 " Error: The other application can't perform the DDE function or retrieval you attempted. The other application doesn't recognize the data...
  10. SBGibson

    .Net use paintbrush?

    Hi guys, I've deployed an application in a win2003 server. This application works with system.drawing namespace for editing images in memory. I had an error in event viewer saying that network service user was not allowed to use a dcom object and the class id points to paintbrush or paint.image...
  11. SBGibson

    Hack .suo file

    Hi guys, There's a way, an editor or something to change the content of a .suo file? I tryed to converting it from unicode but without success. I need to change it in order to have 2 different versions of a project pointing to the same web folder. If I open a second project it prompt me for a...
  12. SBGibson

    Closing Acrobat 7 window

    Hi guys, I'm using acrobat reader with commandline for printing in background pdf documents. I put options for printing, opening minimized and closing the window after printing. Now with the new acrobat 7 the window start opening minimized but after that it raise, print and doesn't close...
  13. SBGibson

    Show notifyicon after logon

    Hi guys, I've coded a windows application that will be scheduled to start "at system boot". This app use a notifyicon to give access at all functions. It works fine during normal use but if I restart the PC the app is launched correctly without logging but when I log in the notifyicon is not...
  14. SBGibson

    POSTing to another form

    Hi guys, I've to connect my application to an online payment provider that requires I call his page passing parameters with a post action. How can I do that during postback? I don't have all information in a form, some of them are takem from database and when I click "Pay" I would like to read...
  15. SBGibson

    Automate build comment web pages

    Hi guys, there's a way, via command line or something else, to automatically launch the creation of web bages based on the c# xml comments in order to update the documentation during a nightly build? Thanks in advance. Stevie B. Gibson
  16. SBGibson

    Getting eventhandler name

    Hi guys, I'm trying to give the possibility to a user to disable some event of a datagrid. When an event is associated to a function in design time a line like that must be added to code: this.dg.EditCommand += new System.Web.UI.WebControls.DataGridCommandEventHandler(this.dg_EditCommand); to...
  17. SBGibson

    Get control list from aspx.

    Hi guys, I've developed a web application divided in different areas, every area have its own namespace and many aspx pages. In one of these areas now I've to display a list of every pages contained in the other areas and the list of the controls every page contains. I know I can have a list...
  18. SBGibson

    Not sequential enums via web services

    Hi guys, you know if there's some problem passing a not sequential enum via web services? I noticed that a public enum myenum { firstelement=1, secondelement=10, finalelement=15 end enum become in the reference on the client public enum myenum { firstelement, secondelement...
  19. SBGibson

    Call a webservice method by name

    There's a way to call a webservice method not directly from the object reference but with his name? For example usually we use something like: Mywebservice.wsclass WebService = new Mywebservice.wsclass(); WebService.mymethod(); I would like to call my method using a string containing...
  20. SBGibson

    Sessions, threads...how to identify a session without the session.

    Hi guys, I'm developping a static class library that can be consumed by winforms apps and web apps. In one of the methods I would like to identify the user without accessing to the httpcontext (that doesn' exists in a win app) and without passing any parameter to the method. I thought to use...

Part and Inventory Search

Back
Top