Re: How to disable the automatic swipe effect on the product page? Programming Web Development by rproffitt This is not an offer of edits or support. slideDelay at https://www.lightgalleryjs.com/docs/settings/ looks like something I'd look to add or change. Sometimes website owners don't code so they end up a little frustrated. Frustrated Polymer Tech Hardware and Software Microsoft Windows by polytech … and search for file...can anyone offer assistance to this frustrated chemical engineer?! In advance, thanks! Polytech Frustrated with Java Programming Software Development by and12 … how to find anything on java sun docs. I am frustrated. After this, i don't think i will want to… Re: Frustrated with Java Programming Software Development by sneaker … how to find anything on java sun docs. I am frustrated. ...:@[/QUOTE] I can really understand that frustration. It took me… Frustrated with super simple code... Programming Software Development by <M/> … for a class of mine (Java) and I am really frustrated with it. This was my very last attempt (out of… Re: frustrated newbie needs help Programming Software Development by Need_help! hey i have that same problem except mine is in VB and i can't seem to get it neither!!! im sooo FRUSTRATED i see the logic but it is hard to decipher into VB text Re: Are programmers the most frustrated lot? Community Center by Ravalon …[QUOTE=tech291083;296699] 1. Are programmers the most frustrated lot among all the IT professional in the recent …administrator with a rapidly growing corporation. I was much more frustrated before I became a programmer. :) [QUOTE=tech291083;296699… depends on where you work. People who are frustrated are stressed and feel powerless. If your work … Re: Are programmers the most frustrated lot? Community Center by ~s.o.s~ …;296699]Hi[/quote] Hello. [quote]1. Are programmers the most frustrated lot among all the IT professional in the recent years… great powers come great responsibities, if you think you are frustrated for reasons known to you, the same might be applicable… New to php and getting frustrated Digital Media UI / UX Design by AMulligan … 5.0.2, on WinXP pro. I am getting very frustrated and could really use some expertise. Thanks. New to php and getting frustrated Programming Web Development by AMulligan … 5.0.2, on WinXP pro. I am getting very frustrated and could really use some expertise. Thanks. Re: New to php and getting frustrated Digital Media UI / UX Design by mcldev … 5.0.2, on WinXP pro. I am getting very frustrated and could really use some expertise. Thanks.[/QUOTE] Are programmers the most frustrated lot? Community Center by tech291083 … with this forum, the followings: 1. Are programmers the most frustrated lot among all the IT professional in the recent years… Re: Are programmers the most frustrated lot? Community Center by nschessnerd [quote]Hi,[/quote] Hi! [quote] 1. Are programmers the most frustrated lot among all the IT professional in the recent years? [/… Re: Are programmers the most frustrated lot? Community Center by umat_gila … answear the question there…[/I] 1. Are programmers the most frustrated lot among all the IT professional in the recent years… Re: Are programmers the most frustrated lot? Community Center by Ezzaral … answear the question there…[/I] 1. Are programmers the most frustrated lot among all the IT professional in the recent years… Python Newbie is frustrated Programming Software Development by OB_ … =(. Any hints? (I'd post my code but I got frustrated and deleted it...) Re: Frustrated Polymer Tech Hardware and Software Microsoft Windows by Suspishio You can record a macro that follows your clicks to the directory containing your PDF files. The macro can go on to insert object and you finish it off from there for the specific file. That macro becomes a button in a cell and it takes you there to select your file. Something like that. Re: Frustrated with Java Programming Software Development by javaAddict The only bug I see is you accusing a programming language which has been around for decades, used by thousands, for your incompetence. Just because you can't get it to work doesn't mean it has a bug, it means you don't know what you are doing. It is OK not to know, it is not ok to say that "java" has a bug when no one else has … Re: Frustrated with Java Programming Software Development by and12 [QUOTE=javaAddict;966439]The only bug I see is you accusing a programming language which has been around for decades, used by thousands, for your incompetence. Just because you can't get it to work doesn't mean it has a bug, it means you don't know what you are doing. It is OK not to know, it is not ok to say that "java" has a bug … Re: Frustrated with Java Programming Software Development by and12 Also my Java applets won't run on machines with a Macintosh. So how do you fix that? [B]I AM A NEWBIE TO JAVA.[/B] Re: Frustrated with Java Programming Software Development by and12 I should have the right to delete my own posts. I may not be an expert JAVA program but i should have the right to delete my own posts. Re: Frustrated with Java Programming Software Development by sneaker [QUOTE=and12;966497] [QUOTE=javaAddict;966439]The only bug I see is you accusing a programming language which has been around for decades, used by thousands, for your incompetence. Just because you can't get it to work doesn't mean it has a bug, it means you don't know what you are doing. It is OK not to know, it is not ok to say that "… Re: Frustrated with Java Programming Software Development by javaAddict [QUOTE=and12;966497] Why didn't you answer my previous post then if you think you're so smart.[/QUOTE] What previous post? Not to mention that no one here is obligated to solve every single thread as if we have some sort of deadline. I don't know what post you are referring to, but if I didn't answer it, that was my choice. I don't have to do … Re: Frustrated with super simple code... Programming Software Development by JamesCherrill That code (with a Scanner declaration for kbinput, aqnd placed inside a method) compiles without any errors or warning in NetBeans, and gives the right answers when executed. Maybe the problem is not in that code but caused by something in the rest of the class? Re: Frustrated with super simple code... Programming Software Development by <M/> >That code (with a Scanner declaration for kbinput, aqnd placed inside a method) compiles without any errors or warning in NetBeans, and gives the right answers when executed. Maybe the problem is not in that code but caused by something in the rest of the class? Oh, i see. I suspected that kbinput may not work... What do you recommend as the … Re: Frustrated with super simple code... Programming Software Development by JamesCherrill You have to `import java.util.Scanner;` to use the class name "Scanner" without fully-qualifying the name. The constant 9.0 is a double value (that's how the language is defined), so the calculation is done in double, with a theoretical possible loss of precision when you assign that result to a float. If this bothers you either make all… Re: Frustrated with super simple code... Programming Software Development by <M/> Well, i may have to email the professor on why i am getting these errors then. I do agree, i don't see much possible errors but there could be an error with how he set up the program that grades our snippets of code... Re: Frustrated with super simple code... Programming Software Development by <M/> Okay, i still get errors but not i have this: import java.util.Scanner; public class Exercise2_1 { public static void main(String[] args) { float temperature; Scanner in = new Scanner(System.in); System.out.println("Enter temp. in Celcius"); temperature = in.nextInt();… Re: Frustrated with super simple code... Programming Software Development by JamesCherrill Did you read my previous post? I explained why you get precision-related errors, and how to fix them, but you seem to have ignored it. Re: Frustrated with super simple code... Programming Software Development by <M/> >Did you read my previous post? I explained why you get precision-related errors, and how to fix them, but you seem to have ignored it. Sorry about that, I seem to have the missed the point on what you have meant.