Search

You searched for the word(s): userid:664506

Matching Posts

  • Re: Display Desktop Application Within a Web Browser

    [quote user="thuhue"] Maybe we can do something using Windows Presentation Foundation? [/quote] I finally starting digging into WPF over the weekend, something I've wanted to do for a while. It looks fun :-) and I think I would be able to achieve what I am looking to do plus way more. Thanks thuhue if it weren't for you I likely wouldn't have even thought of looking at WPF. It will be a while but I will post what I can in this thread about the solution to the orginal question
    Posted to Web Forms (Forum) by Rivelyn on 10/26/2009
  • Re: Display Desktop Application Within a Web Browser

    [quote user="thuhue"] Maybe we can do something using Windows Presentation Foundation? [/quote] Well if there is nothing around, I think it would definatly be a good weekend project to work on. I do see value in this beyond the requirements I currently have in this crm. I'll poke around this weekend to see what I can find, at least for a starting point and post my findings here. See what we can come up with over the next little while.
    Posted to Web Forms (Forum) by Rivelyn on 10/22/2009
  • Re: Strange Behaviour - AJAX Update Panel & Timer Tick Event

    Sorry got side tracked on other projects. Yes I am using the Latest build for FreeTextBox, not the 4.x beta, the 3.x build.
  • Display Desktop Application Within a Web Browser

    Hey All, I am currently re-building our CRM. Our shipping department uses a 3rd party desktop application from our shipping company. The application is only about 400px wide and around 300px high. Currently they switch between our intranet/crm and the shipping app, real waist of time. I was trying to find out if there is any way I could window that application within a web browser. This way they could stay on the CRM shipping page and just at the bottom right corner of the web browser have full control
    Posted to Web Forms (Forum) by Rivelyn on 10/21/2009
  • Strange Behaviour - AJAX Update Panel & Timer Tick Event

    Hey all, I have a Master Page with a banner image at the top of the page. I have that banner image within an AJAX update pannel, then I have an AJAX timer that triggers the image to load a new image and Fade-in. All works perfect, no problems. Here is the issue - I have on another page that uses the Master Page talked about above. On that page I am use the latest FreeTextBox to allow users to enter new content. When ever the Timer_Tick event fires on the master page, the cursor within the FreeTextBox
  • Re: SQL Question

    Hey All, I am just not figuring this out, I have tried so many different combinations of SQL with no results. I either get all or nothing. If I had 2 simple tables, (I even tested this just to try and see if I could get it working and no luck) Table 1 : Topic topicID topicTitle topicDescription Table 2 : Post postID topicID postTitle postText postDate Then lets say I had 2 topics with 2 posts in each topic. I wanted to produce a select statement that would loop through all Topics, display each topic
    Posted to Free For All (Forum) by Rivelyn on 10/11/2009
  • SQL Question

    Hey All, Since there is no specific spot on these forums for SQL question I will post it here and see what happens. I am building a small forum, nothing fancy for my gaming group and have run into a little snag with combined SQL Select statements. I am trying to show only the latest post in each thread within a specific topic, and I can not seem to get it to work, here is my sql. SELECT Temp1.threadID, Temp1.threadTopicID, Temp1.threadDate, Temp1.threadTitle, Temp1.gamerTag, Temp1.threadPostCount
    Posted to Free For All (Forum) by Rivelyn on 10/10/2009
  • Re: SQL Question

    I will see what I can do for a single select statement, then post the results. I just happen to be working with this structure of select statements this week at work, so I was kinda in the mind-set when I started out with this venture that I should do it the same way. Thanks guys.
    Posted to Free For All (Forum) by Rivelyn on 10/10/2009
  • Re: Url Querystring Encryption & Decryption

    Sorry I just happen to glance at my previous posts, glad this could help. I also added URLEncoding and URLDecoding to this but I added at page level instead of in the class.
    Posted to Getting Started (Forum) by Rivelyn on 9/18/2009
  • SQL Server 2000 Trigger Breaks Database

    Hey all, Been tasked to create my first sql server trigger today, went though all of the MSDN documentation and some online examples and came up with this. CREATE TRIGGER PostSaleInsert ON [dbo].[Transactions] FOR UPDATE AS IF UPDATE (ShipAccept) DECLARE @Invoice NVARCHAR(20) SELECT @Invoice = (SELECT Invoice From Transactions) INSERT INTO PostSale (Invoice) VALUES (@Invoice)) So I am trying to copy the Invoice number from my Transaction table to my PostSale table, however when I save this all of
Page 1 of 53 (528 items) 1 2 3 4 5 Next > ... Last »