Development of SharePoint or programmer

We are a Las Vegas-based structural engineering firm. We are looking for a developer of sharepoint, local preference to help on the configuration of the workflow that we need for our practice.  The idea is to simplify the way our customers transfer us information and allow our people to copy automatically to the new tasks to work on.

If you have done in the past, what we were looking for in a company of sharepoint or a programmer?

Thanks for your help,

Carlos

Hello

1. your Question is beyond the scope of this community.

For SharePoint MSDN forums:

https://social.msdn.Microsoft.com/forums/Office/en-us/home?category=SharePoint

For SharePoint TechNet forums:

https://social.technet.Microsoft.com/forums/Office/en-us/home?category=SharePoint

@@@@@@@@@@@@@@@@@@@@@@@

For the record, if by chance you were hoping to get depositors of the community:

2. private messages are not used here and e-mail address are filtered to protect users of the privacy community.

And display company names that don't relate to computer problems are considered as SPAM and reported abuses.

See you soon.

Tags: Windows

Similar Questions

  • Responsive SharePoint output - how sitting within SharePoint screen?

    I am developing for Sharepoint release and looking at using the adapted output option. The only problem is when I publish a Multscreen output, transfer it into Sharepoint and open the sharepoint multiscreen output it opens in the screen of sharepoint.

    BUT, if I publish a power reactive and even once uploader files in Sharepoint and then open the index file, it opens opens in a full browser view, don't seat not not in the screen of Sharepoint. Is there a way to change this, so it is located within the display of sharepoint?

    Thanks, Simone

    It is not supported, as the screen SharePoint would break the sensitive part. (Media queries would get the wrong information.) Multiscreen, you can choose the SharePoint Master Page to use, but this option is not available for the release of reagent.

    If you really want to, you can use the Web Viewer download page of SharePoint (display a Web page on a SharePoint page by adding the component Viewer Web Part pages) you help to SharePoint and use this Web site to load the help. Is not ideal, but it will probably work. I remember something that gives problems, but I don't remember exactly. Give it a whirl and let us know how it works.

  • Captivate and Docu-Sign?

    I create a course in 8 Captivate that requires each employee to sign and submit a certificate of course after successfully completing the course (must pass the end of course test).  Current process is to print, sign, scan and certificate signed by e-mail to the persons concerned by the employee.

    We used some docu sign with PDF documents and forms of human resources.  Nobody knows (1) is it possible to use the docu-sign for electronic signatures in Captivate certificates; and (2) If Yes, how?

    We have not (is not in the immediate future to have) a LMS System.  We develop a SharePoint corporate intranet from which employees will have access to the course.  I work with the it Department to implement the display of the results of the quiz on the internal server (SharePoint).  If Captivate can "capture" an electronic signature on the certificate; We hope to work somehow in including that in an e-mail to the server.

    Appreciate your time and any help you can offer.

    Thank you!

    Allen is correct.  I was able to use a web object in Captivate to incorporate eSign and then a user would be able to put their e-mail address and sign the document that would then send the signed copy.  I have not tested with DocuSIgn but I guess as long as you can create a link to a DocuSign document must be signed and it allows the user to upgrade their e-mail address and the sign that it would work the same way.

    Jesse

  • Where is my form PHP error? Two values of the label are received in an e-mail, but three others are not

    Hello

    I have a form on my web page developing, written by a programmer at the top of the page.

    http://www.collegestudentvoice.com/form/form.php

    Of all the labels, I received emails with attachments.

    Except in the label 'College Sports' I will receive 2 values

    Football and Basketball.

    The three values, I CAN'T receive are:

    ((1) baseball, Softball) 2 and 3) of others.

    It seems to me that php script is written in a dynamic

    and structured way.

    SEND-FORM FILE - START-> > > > > > > > > > > > > > > > >

    <? PHP

    PEAR library includes

    You should have the installed pear lib

    include_once ('Mail.php');

    include_once('Mail/MIME.php');

    Parameters

    $max_allowed_file_size = 10000000; size in KB

    $allowed_extensions is array ("jpg", "jpeg", "gif", "bmp");.

    $upload_folder = "files /';" <-this folder must be writable by the script

    $your_email = ' [email protected] ';//<<-- this day to your email address

    $errors = ";

    If (isset($_POST['submit']))

    {

    //Get the uploaded file information

    $name_of_uploaded_file = basename($_FILES['uploaded_file']['name']).

    //get the file extension

    $type_of_uploaded_file = substr ($name_of_uploaded_file,)

                                                                                          strrpos($name_of_uploaded_file, '.') + 1);

    $size_of_uploaded_file = $_FILES ['uploaded_file'] ['size'] / 1024;

    ///---Do validations.

    if (empty($_POST['name']) |) Empty($_POST['email']))

                {

    $errors. = '\n name and Email are required.';     

                }

    if (IsInjected ($visitor_email))

                {

    $errors. = "\n bad email value!"

                }

    if($size_of_uploaded_file > $max_allowed_file_size)

                {

    $errors. = "\n file size must be less than $max_allowed_file_size";

                }

    / /-Validate file extension.

    $allowed_ext = false;

    for ($i = 0; $i < sizeof ($allowed_extensions); $i ++)

                {

    if (strcasecmp($allowed_extensions[$i],$type_of_uploaded_file) == 0)

                            {

    $allowed_ext = true;                

                            }

                }

    if(!$allowed_ext)

                {

    $errors. is "\n the loaded file only is not supported file type.".

    "Only the following file types are supported:".implode(',',$allowed_extensions); "

                }

    //send email

    if (empty ($errors))

                {

    //copy the temp. file uploaded to the uploads folder

    $path_of_uploaded_file = $upload_folder. $name_of_uploaded_file;

    $tmp_path = $_FILES ['uploaded_file'] ['tmp_name'];

    if (is_uploaded_file ($tmp_path))

                            {

    if (! copy($tmp_path,$path_of_uploaded_file))

                                {

    $errors. = "\n error during the copy of the downloaded file";

                                }

                            }

    //send email

    $name = $_POST ['name'];

    $visitor_email = $_POST ['email'];

    $user_message = $_POST ['message'];

    $to = $your_email;

    $subject = "new submission of form."

    $from = $your_email;

    $text = "a user $name sent you this message: \n $user_message";

    $message = new Mail_mime();

    $message-> setTXTBody ($text);

    $message-> addAttachment ($path_of_uploaded_file);

    $body = $message-> get();

    $extraheaders = array ('From' = > $from, 'Topic' = > $subject, "Reply-To" = > $visitor_email);

    $headers = $message-> headers ($extraheaders);

    $mail = Mail::factory ("mail");

    $mail-> send ($à, $headers, $body);

    //redirection to ' thank you page

    header ('Location: .html thank you ');

                }

    }

    ///////////////////////////Functions/////////////////

    Function to validate against any attempt to electronic fuel injection

    function IsInjected ($str)

    {

    $injections = array ('(\n+)',

                  '(\r+)',

                  '(\t+)',

                  '(%0A+)',.

                  '(% + 0D)',

                  '(% 08 +)',

                  '(% + 09)'

                  );

    $inject = join ('|) (', $injections);

    $inject = "/ $injecter / I";

    if (preg_match ($inject, $str))

        {

    returns true;

      }

    else

        {

    return false;

      }

    }

    ? >

    <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional / / IN" "http://www.w3.org/TR/html4/loose.dtd" > ""

    < html >

    < head >

    download < title > file < /title > form

    <! - define some elements of style - >

    < style >

    label, one, body

    {

    are-family: Arial, Helvetica, without serif.

    are-size: 12px;

    }

    < / style >

    <! - a script for vaidating help shape - >

    < script language = "JavaScript" src = "scripts/gen_validatorv31.js" type = "text/javascript" > < / script > "

    < / head >

    < body >

    <? PHP

    If (!) Empty ($Errors))

    {

    echo nl2br ($errors);

    }

    ? >

    < are method = "POST" name = "email_form_with_php".

    action = "<?" PHP echo htmlentities($_SERVER['PHP_SELF']);? ' > ' enctype = "multipart/form-data" >

    < p >

    < label for 'name' = > name: < / label > < br >

    < input type = "text" name = "name" >

    < /p >

    < p >

    < label for = "e-mail address" > Email: < / label > < br >

    < input type = "text" name = "email" >

    < /p >

    < p >

    < label for 'message' = > Message: < / label > < br >

    < textarea = 'message' name > < / textarea >

    < /p >

    < p >

    < label for = "uploaded_file" > select a file to download: < / label > < br >

    < input type = "file" name = "uploaded_file" >

    < /p >

    < input type = "submit" value = "Submit" name = "submit" >

    < / make >

    < script language = "JavaScript" >

    For the validation of the code of

    / / Visit http://www.JavaScript-coder.com/HTML-form/JavaScript-form-validation.p html

    For more information

    var frmvalidator = new Validator ("email_form_with_php");

    frmvalidator.addValidation ("name", "req", "Please enter your name");

    frmvalidator.addValidation ("email", "req", "Please enter your email address");

    frmvalidator.addValidation ("email", "email", "Please enter a valid email address");

    < /script >

    < noscript >

    < small > < a href =' ml http://www.html-Form-Guide.com/email-Form/php-email-Form-Attachment.HT '

    > How to attach the file to email in PHP < /a > article page. < / small >

    < / noscript >

    < / body >

    < / html >

    -END SEND FORM-> > > > > > > > > > > > > > > > > > > > >

    -FORM BEGINNING-> ACTION > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

    <? PHP

    require_once ('recaptchalib.php');

    $privatekey = "6LfwwsISAAAAAAPShkJ6nV3qkgLDHCe2uXj9RTWw";

    $resp = recaptcha_check_answer ($privatekey,

    $_SERVER ['REMOTE_ADDR'],

    $_POST ["recaptcha_challenge_field"],

    $_POST ["recaptcha_response_field"]);

    if (! $resp-> is_valid) {}

    die ("the reCAPTCHA has not been entered correctly. Go back and try again. ».

             "");

      }

    {else}

    include_once ('Mail.php');

    include_once('Mail/MIME.php');

    $errors = ";

    $max_allowed_file_size = 10000000; size in KB

    $allowed_extensions is array ("jpg", "jpeg", "gif", "bmp");.

    $upload_folder = "files /';"

    $name_of_uploaded_file = basename($_FILES['uploaded_file']['name']).

    $type_of_uploaded_file = substr ($name_of_uploaded_file,)

                                                                                          strrpos($name_of_uploaded_file, '.') + 1);

    $size_of_uploaded_file = $_FILES ['uploaded_file'] ['size'] / 1024;

    if($size_of_uploaded_file > $max_allowed_file_size)

                {

    $errors. = "\n file size must be less than $max_allowed_file_size";

                }

    $allowed_ext = false;

    for ($i = 0; $i < sizeof ($allowed_extensions); $i ++)

                {

    if (strcasecmp($allowed_extensions[$i],$type_of_uploaded_file) == 0)

                            {

    $allowed_ext = true;                

                            }

                }

    if(!$allowed_ext)

                {

    $errors. is "\n the loaded file only is not supported file type.".

    "Only the following file types are supported:".implode(',',$allowed_extensions); "

                }

    if (empty ($errors))

                {

    $path_of_uploaded_file = $upload_folder. $name_of_uploaded_file;

    $tmp_path = $_FILES ['uploaded_file'] ['tmp_name'];

    if (is_uploaded_file ($tmp_path))

                            {

    if (! copy($tmp_path,$path_of_uploaded_file))

                                {

    $errors. = "\n error during the copy of the downloaded file";

                                }

                            }

    $Business = Trim (stripslashes($_POST['Business']));

    $ProfessionalSports = Trim (stripslashes($_POST['ProfessionalSports']));

    $Humor101 = Trim (stripslashes($_POST['Humor101']));

    $CollegeSports = Trim (stripslashes($_POST['CollegeSports']));

    $Politics = Trim (stripslashes($_POST['Politics']));

    $EmailToBusiness = $Business. "@collegestudentvoice.net";

    $EmailToProfessionalSports = $ProfessionalSports. "@collegestudentvoice.net";

    $EmailToHumor101 = $Humor101. "" @collegestudentvoice.net ";

    $EmailToCollegeSports = $CollegeSports. "[email protected]"; "

    $EmailToPolitics = $Politics. "@collegestudentvoice.net";

    $EmailTo = "[email protected]"; ""

    $EMailSubject = Trim (stripslashes($_POST['Subject']));

    $First = Trim (stripslashes($_POST['First']));

    $Last = Trim (stripslashes($_POST['Last']));

    $Email = Trim (stripslashes($_POST['Email']));

    $Suggestions = Trim (stripslashes($_POST['Suggestions']));

    $Body = "was filled the following form;

                            $Body. = "\n";

                            $Body .= "-------------------------------------------------------------------- -------------";

                            $Body. = "\n";

                            $Body. = "\n";

    $Body. = ' First name: '; "

                            $Body. = $First;

                            $Body. = "\n";

    $Body. = ' last name: '; "

                            $Body. = $Last;

                            $Body. = "\n";

                            $Body. = "email:";

                            $Body. = $Email;

                            $Body. = "\n";

    $Body. = ' business: '; "

    $Body. = $Business;

                            $Body. = "\n";

    $Body. = "Professional sports: «;»»

    $Body. = $ProfessionalSports;

                            $Body. = "\n";

    $Body. = ' humor 101: '; "

    $Body. = $Humor101;

                            $Body. = "\n";

    $Body. = "College sports: «;»»

    $Body. = $CollegeSports;

                            $Body. = "\n";

    $Body. = ' policy: '; "

    $Body. = $Politics;

                            $Body. = "\n";

    $Body. = ' suggestions: «;»»

    $Body. = $Suggestions;

                            $Body. = "\n";

                            $Body. = "\n";

                            $Body .= "-------------------------------------------------------------------- -------------\n";

    //$Body. = "e-mails sent to:". "." $EmailToBusiness. « / ». $EmailToProfessionalSports. « / ». $EmailToHumor101. « / ». $EmailToCollegeSports. « / ». $EmailToPolitics. « » ;

    $to = "[email protected]"; ""

    $subject = $EMailSubject;

    $from = "[email protected]"; ""

                            $text = "\n $Body";

    $message = new Mail_mime();

    $message-> setTXTBody ($text);

    $message-> addAttachment ($path_of_uploaded_file);

    $body = $message-> get();

    $extraheaders = array ('From' = > $from, 'Topic' = > $subject, "Reply-To" = > $Email);

    $headers = $message-> headers ($extraheaders);

    $mail = Mail::factory ("mail");

    $mail-> send ($à, $headers, $body);

                            If ($Business! = "")

                            {

    $mail-> send (strtolower ($EmailToBusiness), $headers, $body);

                            }

    if ($ProfessionalSports! = "")

                            {

    $mail-> send (strtolower ($EmailToProfessionalSports), $headers, $body);

                            }

                            If ($Humor101! = "")

                            {

    $mail-> send (strtolower ($EmailToHumor101), $headers, $body);

                            }

    if ($CollegeSports! = "")

                            {

    $mail-> send (strtolower ($EmailToCollegeSports), $headers, $body);

                            }

                            If ($Politics! = "")

                            {

    $mail-> send (strtolower ($EmailToPolitics), $headers, $body);

                            }

      }

    print "< meta http-equiv =-"refresh\"content =------"0; " URL = Form.php? suc = y\ "' >"; "

      }

    ? >

    ---------------------------------------------------------------------  END FORMACTION  FILE---

    $Body. = "College sports: «;»»

    I see a space between the College and the sport. Also, make sure that your form fields are named exactly as the names of variables.

  • Developer suite 10 g applications with sharepoint

    Hi all
    We use the developer oracle 10g to oracle database 10g on windows server 2003.

    our Organization will implement Microsoft Sharepoint 2013.
    they ask me to provide a report containing information such as
    1 could take us account of our existing Builder applications inside oracle forms?
    2. how oracle implemented with sharepoint forms?
    3. What are the other aspects, we have to keep in mind about the implementation of forms of oracle with sharepoint?

    could someone help?

    Kind regards.

    SharePoint is a content management system.

    Forms is a tool for development of applications.

    I don't see anyway possible. I guess you can put URLS in Sharepoint that point to your form applications...

    {forum: id = 82} would be a better forum for this discussion, but I don't see that the integration of forms and Sharepoint is something that makes same logical sense.

  • Where should I look for a freelance programmer develop a filter of PhotoShop for me?

    I need to hire a programmer (freelance) to develop a PhotoShop plug-in filter. I am in the area of the Bay of SF, but unfamiliar with the industry. I know that I need a person skilled in C++, algorithms, PhotoShop SDK and Mac platform. I don't know where I should be looking to find a person qualified or business.

    A search on the web for PhotoShop programmer bring up what I need. A Craigslist search under computers came not with anyone with PhotoShop plug-ins programming experience. Sites such as Freelance.com, GetACoder.com, etc., provide some answers and all are 'off-shore'.


    Where should I look (preferably Bay Area)?

    You would probably get a further request in the Photoshop SDK forum, where the developers hang out.

  • Why mysqld.exe keeps using as many CPU (30 to 100% of the CPU, 3 GB memory) when I'm not running any programs or is idle, all the time? To clarify, I'm not a developer or programmer, normal use of the PC.

    Could there be a virus that Norton or malware is not picking up?

    Which version of MySQL to use? Try to upgrade to the latest version if possible.
    "A programmer is just a tool that converts the caffeine in code" Deputy CLIP - http://www.winvistaside.de/

  • Developed by default SharePoint Workspace files

    Hello

    In the last months I searched and read many articles on the web related to the display of folders in MS SharePoint Workspace that opens all files in the default expanded view. All items and responses of the MS self-help groups conclude with the same: folder view "opens with all records enhanced by design", and "there is nothing we can do with this at this point."

    For those of us who are committed to use the workspace despite that flaw, could you please comment on the justification for why Microsoft has decided not to seek a solution to this obvious problem?

    Best regards
    TerjeL

    Hello

    You have reached the end to the Microsoft product support. I suggest you post your query on the link below to get assistance on the issue:

    http://social.msdn.Microsoft.com/forums/en-us/category/SharePoint/

    It will be useful.

  • Programm development

    Wie Brindle ich ein bestehendes Programm (LR) zu den soeben gekauften Adobe CC Programmen?

    CC from Adobe im Manager green are, aber das programm hat den CC Kurzel nicht ubernommen want.

    Besten Dank fur einen Feedback

    Dieter

    Office CC lists the applications as "up to date" when they are not

    -http://helpx.adobe.com/creative-cloud/kb/aam-lists-removed-apps-date.html

  • No access to sharepoint after update for FF30 on Mac

    After I've updated my version FF 29 30 version that I can't open our Sharepoint societies, it has been bookmarked in home page and when I now try to open it I see only a blank page. Its a mac.

    stem of greetings

    See https://developer.mozilla.org/en-US/Firefox/Releases/30/Site_Compatibility#Security for details and workaround.

  • This LabVIEW programmer needs to know

    Hello guys...

    I'm working on labVIEW for 1 year last on mine.

    If I have problems I will post my questions in the Forum of NOR.

    But I don't know that a small drop of sea water...

    So what should a labview programmer should know?

    In short, how avoid the 10 screen wide spaghetti complete code of the structures of the sequence, local variables and the race conditions

    Also I advice take you a look at the certificates of NOR and the "learning curve":

    http://www.NI.com/white-paper/13120/en/

    http://www.NI.com/training/certification/

    http://forums.NI.com/T5/certification/BD-p/certification

    Edit: perhaps, I would just add a few points that I usually have to keep in mind during the phase of a new project of planning:

    • Choose the right framework or model based on requirements
    • Keep in mind how to get and set values - indicators and controls. If possible, use the cable to transmit data. Keep in mind what's OK to do with local variables (for example updating a control), and which should be avoided (usually) (read/write indicators for example). If you cannot use the wire to go directly to information (parallel loops), learn the correct use of notifiers, queues, UserEvents, etc...
    • who will use the code (it is very important, you need a totally different approach if you develop for yourself, or others who are not programmers and perhaps even do not know the physical part of the system...)
    • GUI always be responsible. Avoid bad habits (longer time running things in the GUI event loop).
    • Avoid the overcrowded façade: use pop-up windows for the settings, etc. That the user don't need to see always.
    • Error handling! It is very important to make a robust error handling strategy: for example if one of your HW components creates an error, your application cannot just stop everything. Handle the error, close properly all HW and file references (do not forget if you don't properly close a file, you can lose a LOT of data : file write is buffered memory RAM). Also record the error information to a log file.
    • If you need to make an EXE or installer: use a configuration file to store the user's changes: If the user changed the colors (width, etc.) a chart/graph, store this information in a configuration file that you load at the next startup of the application.
    • Automatic detection equipment (or users the possibility to modify the port/channel): what happens if your application moves to another PC (numbering changes COM port, etc...)? Your application needs to adapt to the changes of HW.
  • Create a dynamic Variable in LabView (newbie Java developer)

    Guys,

    That's my problem, I'm a java developer & c ++ and was interested in learning about LabView. But also simple as indicated by the site OR it is not as banal that I expect it to be perhaps because of my though process. So what I'm trying to get a simple sample to help me start my LabVIEW.

    Example in allows Java say I prompts a user to enter a value that the user enters the [value = 20] & I would be able to create [value = 20 new items], is the value regardless of the user enters. In LabView things do not seem to work that way. So I was hoping that someone provide a nontrivial simple example so that I can better understand how to apply it.

    Thanks for you comments

    Hi * E *.

    I come from a Java background too so might be able to help. I found that LabVIEW is less demanding on the programmer necessarily specify the capacity or the number of variables being created during development and it's a little more intuitively in the background.

    What types of data are you interested? From your post, I would be tempted to use a Subvi "Initialize the array" and wire just at the entrance to size dimension user input.

    In LabVIEW, it is considered advisable to use wires instead of variables wherever possible because they focus on the stream of data as part of the program.

    That help a little?

  • February 9, 2016, cumulative update for SharePoint Server 2013 (KB3114726)

    I need this update to make my second server sharepoint 2013 company to be at the same version as my current.

    Current version of the 2013 Production SP 15.0.4797.1000 Server Configuration database

    Current version of new SP 2013 Development Server Configuration database Version 15.0.4763.100 - how do I update this new server to match the current production one.  I found that 15.0.4797.1000 and tried to downoad CU February 2016 but get this error below

    Why can't I download this more. Loading of the page kb but when try to download it gives this error. "We're sorry, the page you requested could not be found."

    Thank you very much

    Travis

    Hello

    Your Question is beyond the scope of this community.

    Please repost your Question in the MSDN Forums for SharePoint:

    https://social.msdn.Microsoft.com/forums/Office/en-us/home?category=SharePoint

    Office Dev - Sharepoint Center

    https://social.msdn.Microsoft.com/forums/Office/en-us/home?Forum=SharePointDevelopment

    Or in the TechNet Forums for SharePoint:

    https://social.technet.Microsoft.com/forums/Office/en-us/home?category=SharePoint

    See you soon.

  • I created a custom list of base in Sharepoint - not used excel spreadsheet. How to create drop down menus on 3 columns.

    I created a base with 6 columns Sharepoint list.  Now my boss wants to drop-down menus for quick selections in 2-3 of the columns.  How can I add drop-down menus.  This list has not been created in an excel spreadsheet.  I'm not a programmer, but an admin - Basic, normal language assistant would be a great help.

    The columns in the list are:

    The team fall down to 4 teams

    Date of introduction

    Submitted by fall to the low needed for people on the 4 teams

    Initiative

    State required combo for 4 options

    Date of completion

    Hello

    Sorry, it is not a community forum for SharePoint.

    Choose the appropriate forum (probably a General Discussion forum) here:

    http://social.technet.Microsoft.com/forums/en-us/category/SharePoint

    Don

  • How to install SharePoint server 2010 on windows Vista 32 bit?

    I want to work with SharePoint designer 2010 for web development and have need of SharePoint server 2010 to work with her. I find different articles on the Microsoft web site to install the required components, but most of them including Shell 2. So I was wondering if it is possible to install SharePoint Server on Vista 32. If so you could advise me how to?

    Thank you

    Hello

    Your question of Windows Vista is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the MSDN Forum. You can follow the link to your question:
    http://social.msdn.Microsoft.com/forums/en-us/sharepointgeneral/threads

Maybe you are looking for

  • Optimize for speed = &gt; error runtime LV in the CCGArrSupport2.c file (LV2009 / MCB2400)

    Hello I have a MCB2400 and LV2009 and normal Code generation works fine. But if I try the Run-Time Option: "Optimize for Speed" I always this error: "Runtime error LV in the fichier...\CCGArrSupport2.c at 2621:6 line 3. I already tried to work around

  • On battery

    I have an Acer Aspire notebook 5742-6977. It shows the battery must be replaced. Where can I get one? and I can use it without the battery until I will have a new and up to how long can be used directly on food

  • help to install HP laserjet 1022 for mac

    I have a HP LaserJet 1022. My operating system is Mac OSX.5.8. I don't see that exact system appears in the online CV download. The systems mentioned only go up OSX.4. Can I still use your load down? Thank you!

  • Foglight APM - JMX monitoring

    Hello I'm new to Foglight for Java application, monitoring, please bear with me in case I have posted this requirement in the wrong forum and tell me please right forum. I have obligation to use the JMX Foglight cartridge, aggregate the MBean attribu

  • What is jmesoft

    presented under msconfig. I disabled it. Is this necessary? and what's the use of this software?