User Profile

Collapse

Profile Sidebar

Collapse
EinToR
EinToR
Last Activity: Dec 28 '08, 01:36 AM
Joined: May 16 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • EinToR
    started a topic Speed Up FLV Video

    Speed Up FLV Video

    How can I speed up a 40 second FLV file to play in 4 seconds?

    Thanks,
    See more | Go to post

  • EinToR
    replied to C# Creating a PDF Form
    in .NET
    Create an editable PDF.

    I don't need step by step instructions, just a nod in the right direction... I've browsed through some open-source .NET libraries for PDF's but haven't seen anything that says it can create an editable PDF.
    See more | Go to post
    Last edited by EinToR; Sep 29 '08, 02:10 PM. Reason: Incomplete

    Leave a comment:


  • EinToR
    started a topic C# Creating a PDF Form
    in .NET

    C# Creating a PDF Form

    What's the best way to create a PDF Form through C#? I need people to be able to fill out the generated PDF in Adobe Reader and print it out.

    Thanks,
    See more | Go to post

  • EinToR
    replied to Google search redirect
    This is happening in all browsers on multiple machines. I've talked to other IT's and I've been told that it happens about every 1 out of 10 searches.

    If this is in fact on Google's end, I'll use another search engine... I wish someone could shead some more light on this.
    See more | Go to post

    Leave a comment:


  • EinToR
    started a topic Google search redirect

    Google search redirect

    I've noticed this on several different machines and can't figure it out...

    When I search for something on google then click on a link, it'll send me to a page other than the one I clicked on. If I click the back button on my browser then re-click the link, all is well.

    Can anyone shead some light on this? The machines I've noticed this on are all Windows XP Pro SP2 and the machines are not on the same network and are...
    See more | Go to post

  • EinToR
    started a topic Adobe Master Collection CS3 & Vista

    Adobe Master Collection CS3 & Vista

    I was able to install Adobe's Master Collection but when I run Photoshop, it just hangs. I don't even get the splash screen. I'm running it in compatability mode for "Windows XP (Service Pack 2)" and I'm running it as an administrator.

    Any ideas?

    Thanks,
    See more | Go to post

  • EinToR
    started a topic ASP.NET is not authorized...
    in .NET

    ASP.NET is not authorized...

    I'm trying to upload an image but I get this error:

    ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNE T on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="tr ue"/>,...
    See more | Go to post

  • EinToR
    replied to Set Opacity when dragging a form
    in .NET
    That worked GREAT!!! Thank's for your help.
    See more | Go to post

    Leave a comment:


  • EinToR
    started a topic Set Opacity when dragging a form
    in .NET

    Set Opacity when dragging a form

    I'm trying to set the opacity = .50 when dragging a windows form. Here's what I've got:

    Code:
            public Form1()
            {
                InitializeComponent();
                this.Move += new EventHandler(Dragging);
            }
    
            private void Dragging(object sender, EventArgs e)
            {
                Opacity = .50;
            }
    When I run the application, the...
    See more | Go to post

  • EinToR
    started a topic Smart Card - View/Edit SLE4442

    Smart Card - View/Edit SLE4442

    I have an ACR30 USB and am trying to use CardEasy with an SLE4442 card. I have the version available here, http://www.didya.com/faqs.asp?faqid= 85, but I’m receiving errors like “Unexpected error = -1099”, “Reset fail! code = -1099”, and “Card reset fail, OpenSession= -1099”.

    Does anyone have any ideas or know where to find the latest version of CardEasy?

    Thanks,
    See more | Go to post

  • EinToR
    started a topic Google Search

    Google Search

    I've noticed that many high-profile websites have multiple pages below the main link to their site when searching in google. For example, when searching "dell", you'll see these below the 1st link:

    Home & Home Office
    For Home
    Support Options
    Downloads Products
    Downloads Home
    Desktops
    Support Center

    How can I do this?
    See more | Go to post

  • EinToR
    replied to Add to Cart
    in .NET
    I'd create a class, initialize it, then store it as a session variable.
    See more | Go to post

    Leave a comment:


  • EinToR
    started a topic C# XML ListBox
    in .NET

    C# XML ListBox

    I'm trying to make a series of listboxes that filter the next listbox.

    Ex.:
    Listbox01: Toyota, Hundai
    Listbox02 (Toyota selected): Supra, Corola
    Listbox03: (Supra selected): Red, Black

    The DataSource is an XML file simnilar to this:

    Code:
    <items>
      <item name="Toyota">
        <item name="Supra">
          <item name="Red"></item>
    ...
    See more | Go to post

  • EinToR
    replied to Logoff Takes Forever Win 2k3 SP2
    If it's Windows SBS 2003, you could try to disable all services related to Exchange. These usually take a very long time to stop.
    See more | Go to post

    Leave a comment:


  • I don't beleive there's a way to do what you want the way your doing it unless you:

    1) Use ajax to pass the value from myFunc() to a seperate server-side page "page.aspx"

    2) "page.aspx"coul d take myFunc(), Session.Session ID, and the DateTime and insert it into a mysql table. In MSSQL there's a default value where you can put getdate(). I'm assuming mysql isn't that much different.

    ...
    See more | Go to post

    Leave a comment:


  • EinToR
    replied to Stored Procedures to modify MS-SQL data?
    in .NET
    Thanks for posting,

    It was written with Dot Net Nuke in VS2008 .NET 3.5. When I go through the source, everything's in user controls. It just doesn't look right to have 90+ stored procedures rather than a class. There has to be another cleaner way to do that.
    See more | Go to post

    Leave a comment:


  • EinToR
    replied to Selecting all check boxes
    in .NET
    Awesome! Glad I could help.
    See more | Go to post

    Leave a comment:


  • EinToR
    replied to Selecting all check boxes
    in .NET
    Try casting ctrl to type CheckBox. It might look something along the lines of this:

    Code:
    For Each ctrl In Me.Controls
        If TypeOf (ctrl) Is CheckBox Then
            CType(ctrl, CheckBox).Checked = True
        End If
    Next
    I'm really not sure how to cast in VB...
    See more | Go to post

    Leave a comment:


  • EinToR
    replied to Selecting all check boxes
    in .NET
    Did you try this? :

    Code:
    For Each ctrl In Me.Controls
                If TypeOf (ctrl) Is CheckBox Then
                    ctrl.Checked = True
                End If
    Next
    See more | Go to post
    Last edited by EinToR; May 16 '08, 03:52 PM. Reason: Messed up [CODE][/CODE] tags...

    Leave a comment:


  • EinToR
    started a topic Stored Procedures to modify MS-SQL data?
    in .NET

    Stored Procedures to modify MS-SQL data?

    I'm somewhat new to C# and a looking over a .NET web application that someone else developed. Is it standard practice to create stored procedures (over 90 of them) to do repeditave tasks such as insert/update/delete/select? I've always created static classes to do this. Are there any up's or down's to either?

    I'd appreciate any input.

    Thanks,
    EinToR
    See more | Go to post
No activity results to display
Show More
Working...