Is this Possible? I want to embed a form...

Is this possible? I want to embed a client form on our staff website. I want each staff member to complete a client form each day. The form will stay the same, but staff will insert the current date and current activities for the day. The daily form contents would then be sent to me.  Thanks for your help

Hi
Jalil Cracker,
>>when user pres n then it must go to a form but error arises and not working good and threading is not respondin
Could you post the error information? And which line caused this error?
If you want to show Form1, you can use form.show() method
Form1 frm = new Form1();
frm.Show();
In addition, Cosmos is an acronym for C# Open Source Managed Operating System. This is not Microsoft product.If the issue is related to Cosmos, it would be out of our support. Thanks for your understanding. And you need raise an issue at Cosmos site.
Best regards,
kristin
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Is this possible....embed Photoshop function in a web site

    I have pic files taken with a green screen backgrounds.  I can super-impose these pictures onto different backgrounds from within Photoshop - fairly easily.
    I would like to be able to "front-end" these functions in a web site, WITHOUT the user having to know how to use Photoshop.  Can this be done - perhaps with some scripting functions?  If not - are there plug-ins, third-party, etc. available that would let me accomplish the same?
    Thanks
    Jack

    Hi Jack,
    With a bit of hacking you could get a web server with Photoshop installed to produce what you are looking for. I wouldn't recommend this option  though as it would probably be slow and possibly somewhat unstable and rather complicated to set-up. I would suggest you look in to a server side image processor if you have PHP try these options:
    PHP GD
    http://uk3.php.net/manual/en/book.image.php
    Image Magick
    http://www.imagemagick.org/script/index.php
    They will be much faster and simpler to set-up and maintain - but should reproduce all the functionality you need.

  • I have a problem in this that i want to paas a form in a case that when user pres n then it must go to a form but error arises and not working good and threading is not responding

    made in cosmos help please need it
    using System;
    using Cosmos.Compiler.Builder;
    using System.Threading;
    using System.Windows.Forms;
    namespace IUOS
        class Program
            #region Cosmos Builder logic
            // Most users wont touch this. This will call the Cosmos Build tool
            [STAThread]
            static void Main(string[] args)
                BuildUI.Run();
            #endregion
            // Main entry point of the kernel
            public static void Init()
                var xBoot = new Cosmos.Sys.Boot();
                xBoot.Execute();
                Console.ForegroundColor = ConsoleColor.DarkBlue;
                a:
                Console.WriteLine("------------------------------");
                Console.WriteLine("WELCOME TO THE NEWLY OS MADE BY THE STUDENTS OF IQRA UNIVERSITY!");
                Console.WriteLine("------------------------------");
                Console.WriteLine();
                Console.WriteLine();
                Console.WriteLine();
                Console.WriteLine("\t _____                                
                Console.WriteLine("\t|     |        |            |        
    |            |      |");
                Console.WriteLine("\t|     |        |            |        
    |            |      |");
                Console.WriteLine("\t|     |        |            |        
    |            |      |");
                Console.WriteLine("\t|     |        |            |        
    |            |      |___________");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|     |        |            |        
    |            |                  |");
                Console.WriteLine("\t|_____|        |____________|         |____________|      ____________");
                string input;
                Console.WriteLine();
                Console.Write("\nAbout OS     : a");
                Console.Write("\nTo Shutdown  : s");
                Console.Write("\nTo Reboot    : r");
                Console.Write("\nStart Windows Normaly : n");
                Console.WriteLine();
                input = Console.ReadLine();
                if (input == "s" || input == "S"){
                    Cosmos.Sys.Deboot.ShutDown();
                else
                if (input == "r" || input == "R"){
                    Cosmos.Sys.Deboot.Reboot();
                else
                if (input == "a" || input == "A"){
                    Console.ForegroundColor = ConsoleColor.DarkBlue;
                    Console.Clear();
                    Console.WriteLine("\n\n\n-------------------------------------");
                    Console.WriteLine("version: DISPLAYS OS VERSION");
                    Console.WriteLine("about: DISPLAYS INFO ABOUT ANGRY OS");
                    Console.WriteLine("hello or hi: DISPLAYS A HELLO WORLD");
                    Console.WriteLine("MESSAGE THAT WAS USED TO TEST THIS OS!!");
                    Console.WriteLine("-----------------------------------");
                    Console.Write("You Want to know : ");
                    input = Console.ReadLine();
                    if (input == "version"){
                        Console.WriteLine("--------------------");
                        Console.WriteLine("OS VERSION 0.1");
                        Console.WriteLine("--------------------");
                    else
                    if (input == "about"){
                        Console.WriteLine("--------------------------------------------");
                        Console.WriteLine("OS IS DEVELOPED BY Qazi Jalil-ur-Rahman & Syed Akber Abbas Jafri");
                        Console.WriteLine("--------------------------------------------");
                    Console.Write("Want to go back to the main window");
                    Console.Write("\nYes : ");
                    string ans = Console.ReadLine();
                    if (ans == "y" || ans == "Y")
                        goto a;
                        Thread.Sleep(10000);
                    else
                    if (input == "n" || input == "N")
                        Thread.Sleep(5000);
                        Console.Clear();
                        for (int i = 0; i <= 0; i++){
                            Console.Write("\n\n\n\n\t\t\t\t\t  ____        ____   ___  
                            Console.Write("\n\t\t|\t\t |  |      |    |     
    |   |  | |  |  |");
                            Console.Write("\n\t\t|\t|    |  |----  |    |     
    |   |  | |  |  |---");
                            Console.Write("\n\t\t|____|____|  |____  |___ |____  |___|  |    |  |___");
                            Thread.Sleep(500);
                        Thread.Sleep(5000);
                        Console.Clear();
                        BootUserInterface();
                        Console.ReadLine();
    //                    Form1 fo = new Form1();
                    else{
                        for (int i = 0; i <= 5; i++){
                            Console.Beep();
                            Thread.Sleep(1000);
                            goto a;
                while (true);
            private static void BootUserInterface() {
                Thread t = new Thread(UserInterfaceThread);
                t.IsBackground = true;
                t.SetApartmentState(ApartmentState.STA);
                t.Start();
            private static void UserInterfaceThread(object arg) {
                Form1 frm = new Form1();  // use your own
                Application.Run(frm);
     

    Hi
    Jalil Cracker,
    >>when user pres n then it must go to a form but error arises and not working good and threading is not respondin
    Could you post the error information? And which line caused this error?
    If you want to show Form1, you can use form.show() method
    Form1 frm = new Form1();
    frm.Show();
    In addition, Cosmos is an acronym for C# Open Source Managed Operating System. This is not Microsoft product.If the issue is related to Cosmos, it would be out of our support. Thanks for your understanding. And you need raise an issue at Cosmos site.
    Best regards,
    kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Embed PDF form in a view

    Hello experts,
      I am working on HAP_DOCUMENT, but could not able to solve the issue for past some time now.
               The Issue is: in the view "layout_sap_standard.htm" , they are calling "body.do" controller to display the details of the part appraisals. in "body.do"  they are refering to "body.htm" view and from there they are again calling the page fragemnt "document_body.htm".
               Now in place of this view i want to embed a interactive adobe form .just i wnat to replace the view with interactive form .
      Regards,
      Madhu

    Hi Roy,
    You can find WdAdobeControl.dll file from the location:
    C:\Program Files\SAP\JDT\eclipse\plugins\com.sap.ide.webdynpro.adobetemplatedesigner\lib
    This is required at client side only for designing of the PDF forms using Adobe Designer.
    Use following command in Command prompt to register it.
    first of all goto the folder in which this file resides in command prompt and then use following command:
    regsvr32 WdAdobeControl.dll
    It will register this dll.
    regards,
    Bhavik

  • I want to buy a Ipod Nano 16gb and it says it holds up to 4,000 songs, and 16 hours of video but on my Itunes I have 2,593 songs and it says I have 19.88 gb. How is this possible?

    I want to buy a Ipod Nano 16gb that says it holds up to 4,000 songs, 16 hours of video, and 14,000 pictures. On my Itunes Library, I have 2,593 songs and it says I have 19.88 gb just of songs. How is this possible? If I buy the Nano, will I not be able to have all my songs on the ipod? The music is my first and only prioarity. I want to be able to have up to at least 3,000 songs, even if that means not having video or pictures. Can someone please help me?

    Daniella04 wrote:
    I want to buy a Ipod Nano 16gb that says it holds up to 4,000 songs, 16 hours of video, and 14,000 pictures. On my Itunes Library, I have 2,593 songs and it says I have 19.88 gb just of songs. How is this possible? If I buy the Nano, will I not be able to have all my songs on the ipod? The music is my first and only prioarity. I want to be able to have up to at least 3,000 songs, even if that means not having video or pictures. Can someone please help me?
    Daniella,
    The estimated song capacities, such as 4000 songs in 16 GB, are based on 4 minute songs of 4 MB each, which is what you get at 128 encoding. 
    Most of us nowadays use well above 128.  (For example, the iTunes Store and Amazon MP3 both sell songs only in 256.)
    However, you can still make more songs fit!  When you sync your iPod, use the option to "convert higher bit rate songs," as pictured.  Choose 128.  This fits more on the iPod, but does not change the songs in your library.

  • I would like to access both my iTunes and my husbands iTunes on the same computer.  However, we still want our separate logins for our devices (iPad, 2 iPhones) for purchases.  Is this possible?

    Is there a way to have one computer hold both my iTunes account and my husbands iTunes account at the same time.  We do not want to log in and out, but want to be able to access both purchases on the same computer (songs, movies, etc).  However, we want to keep our accounts seperate for purchases on our devices.  Is this possible?

    How to use multiple iPods, iPads, or iPhones with one computer

  • In contacts section for the groups section i want to delete old groups i have on the phone and then add a new group for easy access for work contacts for calling. rather then searching each individual contact when needed. is this possible?

    i currently have about 6 different groups listed on the iphone in my contact list section and i want to delete the old ones and create a new group for work puposes!
    i dont want any apps all i want is something similar to my favourites list but in a group so i can just go into that work group and scroll to the person i need to call and this way seperating my personal and work contacts.
    because i do alot of calls from my car i dont want to have to search my contact lists to find the right person i just want them all in a simple folder.
    is this possible because if i already have groups on my iphone i should be able to delete the old ones and create a new one?

    Deleting groups on the phone and creating new ones is not supported with iOS4, you'll have to do that on your computer and sync again.
    Let's see if they changed that in iOS5 when it is released.

  • I want to delete my mobile me account not just from my iPhone but from existence. I want to delete it so that no emails can be received to it, and the sender would receive an undeliverable message. Is this possible?

    I want to delete my mobile me account not just from my iPhone but from existence. I want to delete it so that no emails can be received to it, and the sender would receive an undeliverable message. Is this possible?

    No, you can stop using the account, but you cannot delete it.

  • My wife and I have seperate itune accounts, but want to merge them into one account or at least merge our seperate purchases into one library.  Is this possible?

    Basic problem...my wife has her own iTunes account which she purchases music with, I have my own that i have been purchasing music with...however, married now as we have similar tastes in music and dont want to be duplicating albums etc.
    Was wondering is it possible to merge the two accounts into one account?  Or if not, that we carry on purchasing music but have one shared library.  Is this possible, any help appreciated.
    Thanks

    "Was wondering is it possible to merge the two accounts into one account? "
    No.
    Just put all of your music/apps/etc on one computer/library.  Authorize the computer for both ids. 

  • I want to be able to use airplay to stream audio to another iOS device, and then use that audio stream to be used when recording video instead of the built in microphone / microphone input. Is this possible?

    I want to be able to use airplay to stream audio to another iOS device, and then use that audio stream to be used when recording video instead of the built in microphone / microphone input. Is this possible?

    A third-party app probably cannot obtain a stream from another app. To the best of my knowledge, such a capability is not provided in the software development kit, apps being "sandboxed" from each other and so allowed to communicate only in very specific and limited ways.
    I'm not completely sure what you mean by "limitations on video capture". An iPhone, to the best of my knowledge, can natively record video only through it's built-in camera, and audio while doing video recording only through the built-in microphone or mic/headphone jack. There might be a video recording app that would allow audio input from an external device connected to the dock connector, but I'm not sure.
    Regards.

  • I want to store/play music from a NAS drive is this possible?

    I have iTunes 10.3.1 on my iMac and can broadcast around the house over my Airport Extreme to my two Airport Expresses.  Remote app works great.  Now I want to store music on a NAS drive in the hope I can use that as a server to avoid having to keep my iMac running.  Is this possible?  Hard drive is connected via USB to Airport Extreme.  NAS drive hold both CD's as WAV files and a copy of iTunes 10.3.1.  Remote app simply doesn't see the NAS.
    Any ideas?
    Regards,
    Andy

    Andy Faizey wrote:
    Remote app simply doesn't see the NAS.
    check out NetPortal for iPhone/iPod Touch or FileBrowser for iPad.

  • I have some content in my library that I do not want to sync with my ipod touch. The content has previously been synced and I want to remove it without deleting it from my itunes library. Is this possible?

    I have some music content in my itunes library that I do not want to sync with my ipod touch. The content has previously been synced and I want to remove it without deleting it from my itunes library. Is this possible?

    Hi Pez,
    iTunes in the Cloud is not iCloud. Any songs that you have purchased but have not downloaded (or have deleted), go to iTunes in the cloud. The setting I mentioned will show all of your purchases in the various views in the Music app, whether they are on your device or not. If you turn that setting off, you will only see items that are actually on your device.
    Glad to hear the second sync worked! But if they all start appearing again, make sure that setting is turned off
    Cheers,
    GB

  • I want to delete songs from iTunes Match by unchecking them in my iTunes library on my Mac. Is this possible? If so, how do I change the necessary setting(s) in iTunes or iTunes Match?

    I want to delete songs from iTunes Match by unchecking them in my iTunes library on my Mac. Is this possible? If so, how do I change the necessary setting(s) in iTunes or iTunes Match?

    I have seen this page, but it seems that this involves deleting songs from my iTunes library in order to remove them from iTunes Match. I want to keep them in my iTunes library, but not in iTunes match (I am over my limit for songs in iTunes Match, and would like to decide which songs to keep in iTunes Match).

  • I want to use my Mac desktop as a portal for viewing my cable television via some kind of cord. Is this possible and what do I need to set this up?

    I want to use my Mac desktop as a portal for viewing my cable television via some kind of cord. Is this possible and what do I need to set this up?

    It can be done with analog but not digital thanks to "good 'ol" HDCP copy protection which apple (and most other manufacturers) unfortunately respect.
    So you can take the analog output from your cable box (component -- 5 cables -- if it has it but generally they all have composite -- 3 cables) and feed it into some kind of converter or into some appropriate pci card for your mac pro.  But none of them are going to let you directly use the HDMI output from the box to your computer.
    Bottom line, no single cord is going to work and it will never be the higher quality digital picture you get on your tv.
    Some qualification:  There are boxes that I think support hdmi input.  Look at Blackmagic.  But I still don't think you can get around the HDCP from the cable box (might depend on the kind of cable box). 

  • I want to install Yosemite onto an external hard drive, and keep Snow Leopard installed on the internal hard drive. I want to be able to boot from either system, depending upon circumstance (at least until Yosemite is stable). Is this possible?

    iMac, Model Identifier iMac12,1 with 121.5" screen, 2.8 GHz Intel Core i7 processor, 8 GB 1333 MHz DDR3 memory, 1 TB internal hard drive, running Snow Leopard 10.6.8 from internal drive.
    I want to install Yosemite onto a 1 TB external hard drive (OWC) , and keep Snow Leopard installed on the internal hard drive. I want to be able to boot from either system, depending upon circumstance (at least until Yosemite is stable). Is this possible?

    It is possible. I'll let you read some articles that cover the setup:
    Starting from an external USB storage device (Intel-based Macs) - Apple Support
    or
    http://osxdaily.com/2013/06/22/boot-mac-external-drive/

Maybe you are looking for

  • Using external hard drive for itunes from mac to windows

    Hello, I have an external hard drive for my itunes music connected to a G4. I just bought a laptop (windows) and would like to connect the external drive to it so it will read my music from the external hard drive. How can i do that? Thanks, M

  • Rasterize plugin for indesign?

    Hi I'm looking for a way to rasterize parts of an indesign document when exporting it to pdf. Why? - We don't like to send many vectorial stuff like a new logo for example to customers that didn't pay yet (we had some abuse in the past) - Filesize: d

  • What to Do About Lack of Responsiveness to Phone Failures

    Service repair calls take a week, only to indicate that problems exist in Verizon equipment ... then nothing ...no followup, no service....total lack of commitment to customer. Online trouble reporting is hit-and-miss and access to human seems unlike

  • ZCM Agent Inventory Scan - Patterns for Software Recognition

    Hey Everyone, Is is possible to find out which patterns the Inventory Scan uses to determine the installed Software products? (are there any local files on the agent-side with information what to look for?) For some reason the Microsoft Office 2010 P

  • Strange looking Dreamweaver

    This is starting to get to me... Dreamweaver is not installed correct. I don't have any "icons" in the application! What I got: MacBook Pro (Retina, Mid 2012) OS 10.10.1 Here's what I've tried so far: Clean re-install of OS (latest OS 10.10.1) - Engl