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

    ActionScript 3 object Tracer

    Hello, I have created a new object for tracing ActionScript 3 objects and I want to share it with other developers and eventually get some feedback in order to make it better. You can get the source from: http://blog.bodurov.com/Post.aspx?postID=13 Any feedback is welcomed!
  2. vladibo

    Where can I find classes of the namespace flex.messaging.io

    Where can I find classes of the namespace flex.messaging.io? Can I download them fro somewhere?
  3. vladibo

    XSLT question

    How can I define in XSLT schema that one attribute is required and another is optional? There is no "required" or "minOccurs" parameter here <xs:attribute name="Name" type="xs:string" />
  4. vladibo

    Syntax question

    I've seen this syntax: this.ie4 = !!(this.ie && !document.getElementById); Can somebody explain to me why do I need !!, why not just: this.ie4 = (this.ie && !document.getElementById);
  5. vladibo

    How to get mouse position if it is not over my window?

    How to get mouse position if it is not over my window? For example if it is over the title bar or windows task bar
  6. vladibo

    IIS Log - is it really strange one or it is ok?

    I am not IIS Administration expert so I may be wrong but as I look on our production IIS log there are serveral stange thinds there the logs look like that date time s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status 2005-09-16...
  7. vladibo

    ActionScript 2 Documentation Creator?

    Is there open source or commercial program that creates Documentation from ActionScript 2 class files? Thank you
  8. vladibo

    JavaScript program for drawing curvs

    This is JavaScript program for drawing curvs: <html> <head> <title>Test</title> <style> .PE{ position:absolute; width:1px; height:1px; background-color:#EDEDED; } .PEMark{ position:absolute; width:1px; height:1px; background-color:#FF0000; } .PEAxis{...
  9. vladibo

    Quick question on performance

    What is more efficient: A. if (!setWidth) { DoWork() } or B. if (typeof setWidth == 'undefined') { DoWork() }
  10. vladibo

    Using key property in Web Controls

    I have noticed the usage of key property in web controls but I don't see it in the documentation. For example I see this code: <asp:Label id="SystemLabel" runat="server" key="Main_SystemLabel"></asp:Label> There is no property key in the Label control, nor in one of the base classes...
  11. vladibo

    Modifying assembly

    I have a given .NET assembly myassembly.dll Inside that assembly I have a class MyNameSpace.MyClass I wamt to change that class but I don't want to change other classes Is there any way to extract that class from the DLL and then to recompile it with the new class, assuming that I have the...
  12. vladibo

    SQL tough question

    OK, so let's say I have table: CREATE TABLE Test( gui_id UNIQUEIDENTIFIER DEFAULT newid(), vch_code VARCHAR(50) ) INSERT INTO Test (vch_code) VALUES ('A') INSERT INTO Test (vch_code) VALUES ('B') INSERT INTO Test (vch_code) VALUES ('C') INSERT INTO Test (vch_code) VALUES ('C') How can I get...
  13. vladibo

    Flash Remoting - Access to .NET Assembly - Security!!!!

    I just have found that there is a big security issue with possibility to invoke any public method in any assemble in BIN if I use remoting... Is there any way not to allow accessing a method in assembly but only aspx page? How can I protect other objects in my assemblies for possibility to...
  14. vladibo

    Remoting Licence per CPU...

    I have a server and a mirror failover server. In web its always only one, but I have to install Remoting on both. So does it mean that we have to pay for two CPU 2*999? Won't I be able to install one on both?
  15. vladibo

    Where is being stored the compiled class of aspx?

    Where is being stored the compiled class of aspx page? Not code behind class. I know code behind classes are stored in a dll located in BIN folder with a name of the project. But how about the aspx pages? Changing them has the great advantage of not reseting the site session, so I started using...
  16. vladibo

    Is it possible to use table variable as parameter for Stored Procedure

    Is it possible to use table variable as parameter for Stored Procedure? Like this: CREATE PROCEDURE SD_sp_HitLog @tbl_result table(gui_id uniqueidentifier) OUT AS (but this doesn't work)
  17. vladibo

    Regular Expression Split?

    How to write regular expression that Splits by ',' but not by '\,' so if I have string str = @"Aa aa\,\,aa aaA,\,,Bbbb bbb bbB"; string pattern = ? string[] strArr = Regex.Split(str,pattern); Console.WriteLine("# Elements: "+strArr.Length); for(int i=0;i<strArr.Length;i++){...
  18. vladibo

    How to cancel PostBack?

    I need to cancel PostBack on the server side (I know how to do that on client side but this is not what I need). That's my current solution. protected void Page_Load(object sender, System.EventArgs e){ if(ShouldBeCanceled){ Response.Redirect(Request.Url.ToString()); Response.End(); } }...
  19. vladibo

    How can I create database alias?

    How can I create database alias? I have database with name MYDB_ARCHIVE but I want to call it to MYDB_CLIENT_ARCHIVE (it is required by the software that uses database) but I don't want to rename my database. Can I create just another alias with name MYDB_CLIENT_ARCHIVE that points to...
  20. vladibo

    How can I check if column exists?

    How can I check inside a T-SQL script if column exists?

Part and Inventory Search

Back
Top