Posts

Showing posts from January, 2013

Adobe Reader 8.1 plugin error

i've uninstalled , reinstalled adobe reader 8.1 , have run patch 8.1.2 , yet ever time try either open adobe reader or pdf file, error message saying "invalid plugin detected, adobe reader needs close" , unable read files @ all. i have windows vista , have installed vista service pack 1, problem occurred both before , after vista service pack 1 installed. i've searched forums , knowledgebase , have tried possible solutions have been offered, so-far nothing has worked. does have suggestions can in order resolve problem? @ point adobe reader unusable. thank in advance help. -ron i have exact same problem running vista. has offered solution? i uninstalled 8.1 , installed 7.1. works fine, got message warning of known vista compatility issues More discussions in Acrobat Reader adobe

Total shock: no more multiple categories blog layout - Joomla! Forum - community, help and support

Image
hi all, it seems generating blog layout articles multiple categories missing in 1.5 , nobody seems care. however, our (sportsclub) website uses functionality it's core feature , upgrading 1.5 seems impossible. the shock-factor comes thread [solved] added subject here: http://forum.joomla.org/index.php/topic,159942.0.html imho thread should removed solved forum asap. how can missing feature solved deciding "leave out because requires lot of code"  if wrong , same result can achieved in (any) other way please let me know , humbly apologize offended  create section blog layout page , include needed categories in section. should achieve desired result. Board index Joomla! Older Version Support Joomla! 1.5 General Questions/New to Joomla! 1.5

Joomla 1.0.13 help (Fresh installation) page loads without template and images - Joomla! Forum - community, help and support

Image
hi, ive tried installing joomla 1.0.13 on wamp 5 server more 3 times. each time home page loads text on blank background without signs of template , images (if viewed other computers). how ever if view webpage localhost loads fine.. im confused .. please help. on same machine have joomla 1.5 rc2 running fine. you can have @ problem here. http://www.roshandaan.com/roshni     (the problem) http://www.roshandaan.com                 (joomla 1.5rc2 running nicely) i hope able me out. thanks in advance i see http://www.roshandaan.com/roshni fine here.  looks usual default template on new installation. double check settings "mosconfig_live_site" in configuration.php file. Board index Joomla! Older Version Support Joomla! 1.0 General Questions - 1.0.x

Problem with wifi esp8266 shield

hi guys new on esp8266. trying realize simple meto station arduino , shield: http://www.banggood.com/esp8266-web-server-port-wifi-expansion-board-esp-13-compatible-with-arduino-p-1008124.html?rmmds=myorderif i installed arduino ide support esp8266. if try load on board arduino ide  example sketch, example blink: code: [select] /*  esp8266 blink simon peter  blink blue led on esp-01 module  this example code in public domain    the blue led on esp-01 module connected gpio1  (which txd pin; cannot use serial.print() @ same time)    note sketch uses led_builtin find pin internal led */ void setup() {   pinmode(led_builtin, output);     // initialize led_builtin pin output } // loop function runs on , on again forever void loop() {   digitalwrite(led_builtin, low);   // turn led on (note low voltage level                             ...

Newby Question

ok, point of limitation , can looking wrote first adapted code match need , success in loading board: code: [select] // multistepper.pde // -*- mode: c++ -*- // // shows how multiple simultaneous steppers // runs 1 stepper forwards , backwards, accelerating , decelerating // @ limits. runs other steppers @ same time // // copyright (c) 2009 mike mccauley // $id: multistepper.pde,v 1.1 2011/01/05 01:51:01 mikem exp mikem $ #include <accelstepper.h> // define steppers , pins use accelstepper stepper1(1, 3, 6); // pin 3 = step, pin 6 = direction accelstepper stepper2(1, 4, 7); // pin 4 = step, pin 7 = direction accelstepper stepper3(1, 5, 9); // pin 5 = step, pin 8 = direction void setup() { serial.begin(9600); stepper1.setmaxspeed(1000); stepper1.setspeed(1000); stepper2.setmaxspeed(1000); stepper2.setspeed(1000); stepper3.setmaxspeed(1000); stepper3.setspeed(1000); } void loop() { // change direction @ limits if (stepper1.distancetogo() == 0) stepper1.moveto(-stepper1.cu...

Joomla! Forum - community, help and support - Login

the board requires registered , logged in view forum. username: password: i forgot password resend activation email remember me hide online status session   register in order login must registered. registering takes few moments gives increased capabilities. board administrator may grant additional permissions registered users. before register please ensure familiar our terms of use , related policies. please ensure read forum rules navigate around board. terms of use | privacy policy register Board index

files extension for download on joomla site - Joomla! Forum - community, help and support

hi, i'm using joomla manage website, stored files on server http://www.devcs.com/downloads/freelisp/cloud.vlx http://www.devcs.com/downloads/pdmsmacr ... aft.pmlfrm i not able donwload these files when use hyperlink, did noticed these kind of problems? solution? these files uncommon software, extensions proper used in software. pls me Board index Joomla! Older Version Support Joomla! 1.5 Administration 1.5

Many Timers at once Arduino

hello everyone.. for current project required have ability run 10 timers @ once. have made simple sketch 1 timer using millis(); function, carryover variable used in case of overflow of millis() function. if need ten timers, have create 10 times variables used in code. since have basic knowledge of programming know if there simpler way require. thanks in advance! here code: // include library code: unsigned long carryover=0; unsigned long previoustime = 0; unsigned long elapsedtime =  0; int timestart=0; int timeover=0; void setup() { serial.begin(9600); pinmode(5,input); } void loop(){ timestart=digitalread(5); if (timestart==1){timer();} else{} if (timeover==1) {    serial.println("sss");   timeover=0;   previoustime = 0;   elapsedtime =  0;   }   } void timer() { if (millis()==0) {carryover=previoustime*2;} else{} previoustime = millis(); while(elapsedtime <=(6000)) {   elapsedtime =  millis() - previoustim...

Thread: Wine & Photoshop CS2

Image
hello everyone, reinstalled ubuntu 9.10, , wine along it. trying install photoshop cs2 (from creative suite 2 disk) ; following process , output. [in terminal] wine /media/cdrom0/setup.exe errors are: code: err:seh:raise_exception unhandled exception code c0000005 flags 0 addr 0x4530b1 and there message about not being able load module //c:/wndows/system32/adobe.exe. entire log can read here bump. Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [SOLVED] Wine & Photoshop CS2 Ubuntu

ESP8266 EEPROM WRITE / READ PROBLEM

hi testing device eeprom library . i trying save ssid string , read after reloading sketch. step 1 : write , read in same sketch works -> code: [select] #define eprom_memory_size 512 int serveraccessssidaddressstart=1; int serveraccessssidaddressend=32; void writestringeeprom(string s,int startadress,int endadress); string readstringeeprom(int startadress,int endadress); void setup() {   serial.begin(115200);      string server_router_ssid ="a111111111111111111111111111111a";   serial.println("start write");   eeprom.begin(eprom_memory_size);   writestringeeprom(server_router_ssid,serveraccessssidaddressstart,serveraccessssidaddressend);   eeprom.commit();   serial.println("write done");      serial.println("read");   //eeprom.begin(eprom_memory_size);   string res = readstringeeprom(serveraccessssidaddressstart,serv...

Need A Very Simple Gallery Willing to $$ For One! - Joomla! Forum - community, help and support

Image
i have school website... , need simple gallery can put teacher's picture name , link e-mail. have seen cool flash galleries, etc... want sure going work good. willing pay it... believe me... guys worth way more ask!!!! i love 1.5!!!!!  it's awesome!!!! i looked day , tried everything.  there isn't gallery works under joomla 1.5    did create flickr account , created flikr html badge used in wrapper. it'll have until comes along. http://www.flickr.com/photos/whitebirchstudioscom/ Board index Joomla! Older Version Support Joomla! 1.5 Extensions for Joomla! 1.5

Thread: need help with ./configure for GNU GCC install

when attempting implement ./configure , respnse "source not found". help? as newbie, still struggling downloading, configuring , installing gnu gcc 4.4.2 , gnu g++ 4.4.2. understanding should simple these following steps: 1. download tar.gz gnu gcc download mirror site (but folder or directory path should downloaded to?) 2. extract files 'srcdir', different build directory 'objdir' (should 2 directories have same parent folder, i.e. gcc/srcdir , gcc/obdir ?) 3. create 'objdir' prompt: mkdir objdir, cd objdir, ./configure. steps should cause configure file run, @ prompt: make, enter makefile install. however, ./configure tells computer run configure file in directory you're in (./ syntax). if you're supposed build in different directory srcdir, should run ./configure in srcdir? , if so, how tell computer build in objdir ? or build seperate step sequence: ./con...

Error opening log.csv - linked to array of files?

hi all, i'm having issues datalogging. i'm building on this older thread. created array of files , want open these files write on them. however, error opening file. don't know if because supposed use array of pointers files instead of array of files, or if due name of file, or due other issue.  made sure filenames short (less 8 characters) , contained letters , numbers. here code snippet (within loop() function , within state): code: [select] file filepointers[celln]; //array of 4 files, 1 each cell char filename_cell[32]; char completefilename_cell[40]; sprintf (filename_cell, "s%02ic%02i.csv", nn, thiscell + 1); //create filename sprintf (completefilename_cell, "%s/%s/%s", foldername, datafoldername, filename_cell); //this uses made foldernames , gives: /201216/data/s01c01.csv filepointers[thiscell] = sd.open(completefilename_cell, "r"); if (filepointers[thiscell]) { //write stuff } else {     serial.println("err...

Problemi con fading.

buon giorno tutti. sto sviluppando un progetto forse un po' troppo per le mie capacità di programmatore basiche; praticamente vorrei fare una centralina che generi tre fade con durata variabile (con possibilità di fade salire o fade scendere) e che partano in tre momenti diversi ed indipendenti. per far questo ho utilizzato: -arduino mega -lcd 4x20 -pulsanti vari -rtc ds1307 il programma prevede due menu molto semplici, uno per regolare l'ora, ed uno per impostare fade (attualmente implementati solo due, ma quando risolvo l'inghippo diventeranno tre); nel menù fade imposto l'ora d'inizio e la durata. praticamente il programma lavora così: quando raggiunge l'ora impostata per il fade, inizia lavorare il pwm un step alla volta, della durata impostata (pr esempio: 1 minuto=60000ms 60000/255= ogni step lo deve fare ogni 235ms circa). il problema è che non lo fa, nel senso che tempi sono sbagliati, dopo un minuto è ancora li che sta incrementando. ho provat...

Can I automatically hide the Menu Bar, Toolbar, and Navigation pane without having to press F4, F8,

Image
i'm using reader 7.0.9 on vista. i've been reading many pdfs , everytime open 1 reader menu bar, toolbar, , navigation pane there. there way hide them automatically on reader startup? perhaps registry setting? i'm accustomed pressing f4, f8, , f9 it's minor annoyance. fullscreen nice too, it'd best if have them hidden automatically @ starup. thanks can offer! here's posted elsewhere might work. 26. jun 14, 2009 9:35 pm in response to:                                     (reinaldobaptista) re: hiding navigation pane in adobe acrobat/reader 8.x thank you. worked in adobe 9 pro too.     hkey_current_user\software\adobe\acrobat reader\8.0\rememberedviews\cnocategoryfiles\c1\cviewdef\ bavdocviewtabsshowing = 0   do know how change magnification or zoom default 100% every document opened? fi...

Sending data from Arduino to Visual Basic

hello, i hope can me in project. well, want make counter on arduino; everytime pushbutton pressed, variable increment ++1. (i can this). then, want show counter (number of pulses) in visual basic in textbox. (i can also). but problem is, when information sent. it appears in textbox: -number of hits:1 -number of hits:2 -number of hits:3 -number of hits:4 -number of hits:5 it keep jumping line , , another. i don't want that. want show amount of hits in single line; in other words, uploading same variable without skiping line example above.. i don't know if can that. surely vb question. why not clear textbox before adding data? Arduino Forum > Using Arduino > Interfacing w/ Software on the Computer > Sending data from Arduino to Visual Basic arduino

MIT app inventor

Image
hi everyone, doing project on arduino uno using hc-05 module. developing android app on mit app inventor, have been trying different code blocks having similar problems. when install app work few seconds freezes. can me out please?? images original post don't have download them. see this  image guide ...r Arduino Forum > Using Arduino > Project Guidance > MIT app inventor arduino

Thread: Ubuntu 9.10 install issue

hi, im new linux got live cd ages ago in linux dummys book had 7.4 on installed on older computer removing windows, realised version many releases behind , wanted upgrade. thought fresh install of 9.10, downloaded iso image used infrarecorder burn image on slowest speed , loaded cd on computer, run install , flashing ubuntu symbol either hangs on purging configuration files gdm-guest session or reachs load of cant find value apps/netbbok-launcher/favourites or something. appreciated in advance still havent got anywhere tried writing multiple cds , downloading iso image again incase bad ive set computer boot cds. have ideas?? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] Ubuntu 9.10 install issue Ubuntu

Stepping Through Code

good morning. i new using arduino, although did vb4 , vba programming years ago. in programmes, possible step through code line @ time see happening. possible in arduino interface? find useful in trying ascertain why code appears failing. thank you. james. quote is possible in arduino interface? afaik: no. maybe third party ide works arduino. Arduino Forum > Using Arduino > Installation & Troubleshooting > Stepping Through Code arduino

Thread: every time I login, always a menu

hi, imagine have password of user. every time log in host user shows me menu, shows me prompt. if try ctr+c, logout session. help? many , sorry english! you want login command line prompt? Forum The Ubuntu Forum Community Ubuntu Official Flavours Support General Help [ubuntu] every time I login, always a menu Ubuntu

IDE 1.8.0, Arduino Zero, Raspberry Pi, CMSIS-Atmel not available

i downloaded , installed ide 1.8.0 on raspberry pi 2 model b running latest raspbian jessie.  works great uno board. i unable use 0 board. under board manager selected "arduino samd boards (32-bit arm cortex-m0+) arduino" when clicked "install" next "1.6.11".  got following error: "tool cmsis-atmel not available operating system." what can fix or work around this? i have submitted bug report: https://github.com/arduino/arduinomodule-cmsis-atmel/issues/2 until official fix released have 2 options: 1. use samd boards 1.6.8 or older. not use cmsis-atmel. 2. save attached file disk (but not in ~/.arduino15) , add code: [select] file:///wherever/you/put/it/package_xx_index.json to preferences > additional boards manager urls. after should see "arduino samd boards (32-bits arm cortex-m0+) arduino *** workaround arm linux/cmsis-atmel ***" in boards manager. (just versions use cmsis-atmel.) ...

Checking for XSS and dodgy patch to fix. - Joomla! Forum - community, help and support

Image
having been notified 1 of sites after had xss vunerability. :-[ i suggest check sites not on website http://www.xssed.org&nbsp; :(" title="angry" /> i have hacked comment preventing vote option prevent xss until such time true fix occurs. there loads of joomla sites affected. hi! i try in english, hope can understand i thing best can is  don't use vulnerable extensions; but, if not sure that, can try 1 "extra protection" can use .htaccess  + mod_rewrite? this 1 can stop lot of xss intrusions, scanners, etc: code: select all rewriteengine on options +followsymlinks #evitar escaneos y cualquier tipo de inyección o manipulación malintencionada # de la url. con esta regla es imposible lanzar ataques de inyección (sql, xss, #etc) rewritecond %{http_user_agent} ^$ [or] rewritecond %{http_user_agent} ^(-|\.|') [or] rewritecond %{http_user_agent} ^(.*)(<|>|%3c|%3e)(.*) [nc,or] rewritecond %{http_user_agent} ^(java|curl|wget)(.*) [nc,or] rew...

Problema con cgi en STRATO - Joomla! Forum - community, help and support

hola amigos!!! me acabo de mudar de un servidor uno strato. hasta ahora estoy muy contento, no tenido problemas salvo el siguiente. resulta que tenía instalado en el antiguo servidor el mambot "mostexbot", que transforma fórmulas matemáticas en imágenes gifs que son visibles en la web. me funcionaba perfectamente en aquél servidor, pero ahora seguido los mismos pasos en el de strato y no funciona. he instalado el bot sin problemas y colocado el archivo mimetex.cgi en la carpeta /cgi-bin/ del nuevo servidor, pero no funciona. en el bot hecho los cambios siguientes: // adjust match system configuration       $mimetex_path = $mosconfig_absolute_path."/cgi-bin/mimetex.cgi";       $mimetex_path_http = $mosconfig_live_site."/mambots/content/mimetex";       $pictures_path = $mosconfig_absolute_path."/mambots/content/mimetex/pictures";       // ¿podría ser que los archivos cgi no tienen permisos en esa carpeta? el tema es que con strat...

Fatal error: main(): Failed opening required '' (include_path='.:/usr/share/php: - Joomla! Forum - community, help and support

i got error when trying uninstall mambot innstalled. matter of fact, got error both on front page , in admin panel before set value 0 in filename of mambot. have restored it, when try delete this: fatal error: main(): failed opening required '' (include_path='.:/usr/share/php:/usr/share/pear') in /var/www/01/11/13/fiskersiden.no/www/administrator/components/com_installer/admin.installer.php on line 54 on line 54 - 58: if(myform.ftpuse.checked){ thisform.ftpuse.value='1'; if(checkftpform()) return true; return false; } else thisform.ftpuse.value='0'; Board index Joomla! Older Version Support Joomla! 1.0 Extensions - 1.0.x

Idea for the index.html files in Joomla directories - Joomla! Forum - community, help and support

hi, first of all, appologise posting in wrong forum, there many forums , don't know in category post. if moderator , know appropriate forum topic, please move topic , let me know. i have idea index.html files can find in directory of joomla, in order prevent visitors browsing through files. file contains following code outputs blank screen: code: select all <html><body bgcolor="#ffffff"></body></html> now here idea: how replacing file index.php files containing this: code: select all <html>    <head>       <title>welcome, redirected</title>       <script language='javascript'>          window.location='<?php echo $mosconfig_sitename; ?>';       </script>    <head>    <body>       <center><h1>please stand by</h1></center>    </body> ...

Hi ,need help

i have homework designed 0-99 counters our teacher tried lot of things wanted increase button not code button find wrong place const int a=2; const int b=3; const int c=4; const int d=5; const int e=6; const int f=7; const int g=8; const int dp=9; const int konlar=10; const int kbirler=11; const int but=12; int sayici; void setup() { (butondurumu)=digitalread(but); if (butondurumu==0)   {sayici=sayici+1;}       for(int i=2;i<12;i++) {delay(100); pinmode(i,output);   } pinmode(but,input_pullup); sayici=0; } void loop() { int birler=sayici%10; int onlar=sayici/10; int i=0; while(i<35) { goster(birler); digitalwrite(kbirler,high); digitalwrite(konlar,low); //delay(10); goster(onlar); digitalwrite(kbirler,low); digitalwrite(konlar,high); //delay(10); //i++; } //sayici++; if (sayici==100) sayici=0; } void goster(int n) { switch(n) { case 0: digitalwrite(a,high); digitalwrite(b,high); digitalwrite(c,high); digitalwrite(d,high); digitalwrite(e,high); di...

Problema Refresh comunicazione seriale Arduino Nano CH340

Image
salve tutti, mi è capitato un problema assai bizzarro con arduino nano con chip ch340 installato correttamente. dopo aver fulminato un arduino uno originale ho caricato lo stesso identico codice su questo arduino nano. il codice semplicemente pilota dei relè, ripeto che con arduino uno andava tutto alla perfezione, ora tutto funziona come prima ma! quando collego qualsiasi dispositivo usb al pc (windows 10) il refresh dei dispositivi fa si che arduino nano si re-inizializzi spegnendomi relè.. se qualcuno qualche idea sul perchè e magari su come risolvere glie ne sarei grato  che cos'è il "refresh dei dispositivi"? Arduino Forum > International > Italiano > Software (Moderator: leo72) > Problema Refresh comunicazione seriale Arduino Nano CH340 arduino

Aspect Ratios Issues

i trying videos recorded @ 16:9 ratio on jvc everio show 16:9 ratio on premiere elements 7.0. when creating new project, have tried both ntsc , pal project presets, have chosen hard disk within both of those, , widescreen. these presets said work great jvc everio cameras. when import file premiere, video gets stretched vertically ratio looks 4:3. happens each combination of presets. the thing can think of have been downloading files camera computer, , importing them premiere...would make difference? any ideas? everio's mod files notoriously challenging programs premiere elements, strange reason. here's 1 solution works, faqs @ top of forum. http://www.adobeforums.com/webx/.59b69740/0?14@@ short of that, can right-click on clips on timeline or in media panel , select option interpret footage. More discussions in Premiere Elements adobe

Why does my sketch stop after a custom void?

hello all!  have knock sensor keep attached door.  uses piezo element detect knocks , rf transmitter beam code when knock detected.  can see in code block under "// voltmeter", updates every 10 minutes.  #1 below verified working properly.  #2 has issues once gets batterylevel().  instead of going through entire block of code in #1, custom "void batterylevel()" called can see.  once interval reached in #2 , batterylevel() triggered, rf transmitter no longer transmits upon detecting knock (even though still detects knocks , executes "serial.println(sensorreading)").  why happen?  thanks! #1 code: [select] const int knocksensor = a6; const int threshold = 1; int sensorreading = 0; #include <rcswitch.h> rcswitch myswitch = rcswitch(); // voltmeter float vpow = 5.21; float r1 = 100000; float r2 = 10000; long previousmillis = 0; long interval = 600000; // rgb led int redpin = 7; int greenpin = 6; int b...

Coding with analog and digital inputs

hi! have problem struggling put code potentiometer (analog) , ultrasonic sensor same line of code. using ultrasonic sensor obtain distance reading , have working code on own. potentiometer being used measure rotation , again have working code on own. how can combine two? well rule of thumb this: decide want resulting sketch do, , figure out how. if 1 uses blocking code full of delay()s, it's possible other skecth's code (like reading switch say) not happen @ right time. if that's likely, should start refactoring blocking delay()-based code doesn't block. check , resolve pin , variable name clashes. copy stuff above setup() both new sketch, or 1 other if use 1 "master", variable declarations, library includes etc. do same stuff in setup(). and stuff in loop(). copy functions. add code make 2 things happen in concert, ie maybe check sensor 1 program , use value invoke came other. Arduino Forum ...

Installation of Adobe Reader Simplified Chinese

i using windows vista ultimate english version simplified chinese language pack, , trying install adobe reader simplified chinese version. installation instructions in chinese installed program in english only. how can install chinese version on machine? hello m facing problem reading chinese simplified document,,i converted tiff file pdf , installed chinese simplified font,,my need select contents of converted pdf , copy,paste translator(google or systran) inorder translate chinese fonts english..but not select converted pdf's contents in text format,,it copies images again..please this.. More discussions in Acrobat Reader adobe

Dudas montaje Arduino Mini + Leds alta intensidar

Image
buenas tardes. soy nueva en este mundillo de arduino y tengo algunas dudas. he estado leyendo en foro e internet y creído entender lo siguiente (basándome en el arduino uno, luego el resto habría que mirar las especificaciones técnicas): en reposo, consume unos 60ma límite de tensión por vin (alimentación externa):  7-12v intensidad máxima por cada pin: 20ma salida directa: 3,3v y 50ma duda : cuál es la diferencia entre usar en un pin de salida digital: que sea o no pwm? el pwm es para regular el ancho de pulsos, eso lo entiendo. pero, ¿si conecto leds salida digital no pwm también se encenderá, ¿no? con el pwm se podría regular la intensidad. ¿es así? ¿es esa la diferencia? arduino uno según otro que leído (no sé si en el foro o en otr lado), todo está limitado 500ma (incluidos los 60ma que consume el arduino). así que 500mah - 60mah = 440ma salida directa: 5v, 440ma salidas digitales : pueden entregar 200ma sumando todas las salidas como el arduino uno es algo grande pa...

Arduino+ HTML

hi everyone please me, doing websever connect between arduino , html code. created using html code however, register them id button. not know how connect html id arduino id. there other way use button make work "password" #include <esp8266wifi.h> const char* ssid = "daniel639"; //ssid of access point const char* password = "falcon12345"; //password int ledpin = d4; //led output pin assigned d12 int randnumber(1) ; int lockdoor, unlockdoor; //ocking , unlocking variable char value; wifiserver server(80); void setup() {   serial.begin(115200);   delay(10);   pinmode(ledpin, output);   digitalwrite(ledpin, low);   // connect wifi network   serial.println();   serial.println();   serial.print("connecting ");   serial.println(ssid);   wifi.begin(ssid, password);   while (wifi.status() != wl_connected) {     delay(500);     serial.print(".");   } ...

"There was an error opening this document..."

...file not found" this message every time try , convert range of different word documents pdf using button on taskbar. reader runs through process of converting document, saves in right place, message comes every time tries display document has coverted. has started happen since downloaded 8.1 update. have tried repairing , reinstalling adobe reader still same problem. any ideas? thanks. i same error message when download pdf document e-mail , hit open file dialog box. if end task adobe , go adobe reader, can open file there nuisance have this. More discussions in Acrobat Reader adobe

Adobe Reader 9 - always asks

when ever opening .pdf first time message: "do want open or save" on previous installations of "reader" did not have - annoying when visiting web sites in .pdf format. i have searched through "preferences" , cannot find how keep happening. ideas" rpiat1@aol.com >i have searched through "preferences" , cannot find how keep happening. reader preferences or browser preferences. believe it's in latter. More discussions in Acrobat Reader adobe

Robot TANK - Two H-Bridge IBT2 + PS3 Controller.

hello friends, i'm using google translate! maybe translation not good. i needing developing code control 2 dc motors + 2 bridge-h ibt2 + ps3 joystick. my robo tank type the problem want control both using 1 analog stick (left), using x , y axis. the right stick remain control paintball gun. the problem push joystick forward (y-axis) 2 motors go forward! but if push forward , right (y axis + x axis) right motor needs slow down, , left 1 increase! turns right. h-bridge link (1 each motor) = http://www.hessmer.org/blog/wp-content/uploads/2015/06/ibt-2-input-ports.jpg if can me code, thank much! help! Arduino Forum > Using Arduino > Motors, Mechanics, and Power (Moderator: fabioc84) > Robot TANK - Two H-Bridge IBT2 + PS3 Controller. arduino

HELP!! PDF/Print! - Joomla! Forum - community, help and support

Image
help! help! i need regarding default print/pdf options of joomla. searched previous topics; there lots of entries problems these options no answers. let's see if 1 of not answered ones!  1. pdf option works fine, there problems format of text. example; format of bulletin gone, , line spacing , paragraph formats destroyed. 2. insert logo of company pdf file. (i guess both problems have write codes ../includes/pdf.php file, have no idea writing codes. ) 3. print option works, except front page. shows blank page "close window" when click print on front page. inserts stupid background template i'm using, i'd rid of well. i appreciate if help. okay if solve one, can use pdf option , can print pdf file or if print works don't need put pdf file. thanks in advance! ..waiting replies..  x.rookie.x wrote: help! help! i need regarding default print/pdf options of joomla. searched previous topics; there lots of entries problems these options no answers. let's see i...

Can you recommend some threads to read?

google lead me here through couple rather old threads had maybe 1 or 2 comments on topic; figure or several someones have done similar project keywords might off looking for. i buying older car, 89 mercury grand marquis, original , want keep way.  these cars came idiot lights in dash rather gauges , have additional monitoring on power train.  looking oil pressure , coolant temp though once mod operational easy add other functions. want system self contained , removal\restorable. car has digital clock in center of dash this think easy hack, require no dash modification, , replaced oem part if need be.  my idea use arduino or similar microprocessor (pi 0 or teensy might more ideal) , drive oem lcd scroll through clock, oil pressure, , coolant temp. have basic background , understanding of how code , have done projects in past on basic stamp;  looking sample code , recommendations on hardware use this.  if know of similar project please feel free comment...

Thread: Sims 3

i'm thinking buying windows. however, have 1 concern: there online subscription fees required play? nope. free play. although run store buy more items , such sims push regularly. Forum The Ubuntu Forum Community Ubuntu Specialised Support Gaming & Leisure Sims 3 Ubuntu

Powering Arduino with High Current Power Supply

i using 5v 80a power supply power 20 meters of leds (short distance partly in parallel... drums). do need put between led power supply , arduino power same source or high amps not matter? have tried other posts there seems lot of confusion i/o pin amp limit , actual arduino power amp limits.  "does high amps not matter" no. well yes. if have large conductors , accidentally short supply may spray molten copper around. fuse. . Arduino Forum > Using Arduino > General Electronics > Powering Arduino with High Current Power Supply arduino

RTC et Arduino DUE

Image
bonjour tout le monde j'ai encore des problèmes avec mon arduino due que j'ai depuis peu. je ne peut pas utiliser (en tout cas ça ne marche pas) mon rtc avec alors qu'il fonctionne parfaitement avec mon arduino uno. :/ alors qu'il devrait indiquer l'heure en temps réelle (ex; 14:35:12, 14 heures 35 min et 12 sec),il indique 165:165:85 comment cela se fait-il ? voila le rtc que j'ai acheté : http://www.ebay.fr/itm/252621311277?_trksid=p2060353.m2749.l2649&sspagename=strk%3amebidx%3ait bon beh en faite j'ai reussi à trouver par moi même ^^ voila un lieu vers un forum de quelqu'un d'autre qui présente la librairie qu'il fait pour les rtc pour arduino due, si j'ai bien compris http://forum.arduino.cc/index.php?topic=136126.0 en tout cas ça fonctionne Arduino Forum > International > Français (Moderators: jfs, Snoot...

Errore libreria "LiquidCrystal_I2C"

Image
ciao ragazzi!  oggi mi è arrivato il modulino i2c per il display 16x2, ma quando carico questo codice,mi da un errore sulla riga "4", ovvero " no matching function call 'liquidcrystal_i2c::liquidcrystal_i2c(int, int, int, int, int, int, int, int, int)' ". premetto che ho installato le ultime librerie fmalpartida questo link: quote https://bitbucket.org/fmalpartida/new-liquidcrystal/downloads , non che fare! btw il codice è questo code: [select] #include <wire.h> #include <liquidcrystal_i2c.h>   liquidcrystal_i2c lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3);   void setup() {   lcd.init();     // print message lcd.   lcd.backlight();   lcd.print("test display i2c");   lcd.setcursor(0,1);   lcd.print("versione 1.0");   }   void loop() { } grazie mille in anticipo ed presto ! ricky l'errore dice che nella libreria non esiste un comando lcd() ...

how to avoid mistaken hyperlink execution from the browser ?

Image
hi , i have added hyperlink on webpage click executes url ?waterplant1 appended it,  shown below. code: [select] http://192.168.1.156:8025/?waterplant1 but might forget , if reload above url along loading page turn on solenoid water plant. is there way can remove mistaken link execution browser avoid turning on solenoid ? one way can think of if arduino replies browser message , browser shows prompt saying "water plant" can't think of way how arduino can send reply browser.  i'm not sure if there way stop because of way internet browsers work. when load link, presume arduino reads incoming "?waterplant1" command , turns on solenoid set time. if reload page, far script concerned, sending command because loaded link. your suggestion of "send , receive" connection way fix error. i suggest sending request, using second link confirmation. eg, send "?waterplant1", send "?waterplant2". should st...

Unable to print - HELP!

i've searched through forum , seen several users posting same problem, no solution offered - can help? i've upgraded adobe reader 8 on system running windows xp media local hp psc 1317. since upgrade whenever try print pdf document message saying "before can perform print related tasks such page setup or printing document, must install printer". no print dialog box appears @ all. i've tried un-installing adobe reader 8 , installing older version - problem doesn't go away. i've reinstalled printer drivers , not solve problem. at wits end - suggestions welcome!! i unable print pdf documents ever since upgrading adobe reader 8.1.1, message says cannot locate printer. other programs print normally. unable remove adobe reader , try again. message "this patch cannot removed". please advise do. More discussions in Acrobat Reader adobe