|
Messages posted by: AgentofDarkness
|
|
Forum Index»
Profile for AgentofDarkness
»
Messages posted by AgentofDarkness
|
|
|
Open Mic
»Yep, it passed -- tint the front windows of your cage!
»Go to message
|
|
|
|
From what I know, equipment laws depend on where your car is registered. For example, Indiana does not require front plates. If you drive in IL without front plates, an IL cop cannot give you a ticket if your car is registered in Indiana. I'm not sure how it would work between the state and city/municipality.
|
|
|
|
|
|
|
|
Open Mic
»Need new cellphone
»Go to message
|
|
|
|
The Chaz wrote:The iTunes Sync Dilemma
With the latest iteration of Apple's jukebox software, iTunes 9, the Pre's capability to sync with iTunes has been broken again. Although Palm complained to the USB regulatory group about Apple's unfair blocking, the Pre is still banned from iTunes sync.
However, the last time Apple blocked the Pre from syncing with iTunes, it took Palm very little time to release a new OS update to fix the problem. The same treatment is expected with the WebOS 1.2.1 firmware, which is said to re-enable Palm Pre iTunes syncing (until the next iTunes update, that is). I was going to get a Pre today. The guy at the Sprint store said that I had to get a data plan. He said the Pre won't even boot up without access to the data network. My main problem with the iPhone is AT&T trying to shove the data plan down your throat. Seems like Sprint is doing the same thing.
|
|
|
|
|
|
|
|
|
|
|
Open Mic
»Wakeup fockers!
»Go to message
|
|
|
|
I wasted most of the day. My morning class (and lab, w00t) was canceled so I slept in. Got to campus and watched videos online for like 3 hours.
|
|
|
|
|
|
|
|
Open Mic
»Any cell phone deals going on?
»Go to message
|
|
|
|
Bek wrote:
Thus far, I've mostly just implemented existing hacks, such as tethering, SSH with Dynamic DNS. My buddy Chris is writing his own homebrew app to interface with Eve Online. This morning, I started researching the browser further, first to simply alter the default font values, but am now digging further to see what else I can modify.
I think my contract is almost up and I'm looking at this phone to replace my BB. Do you know if the Palm Pre is compatible with 802.1x w/TTLS and PAP inner authentication? That is the security that my school uses so I need to know if I can access wireless. Also, can I get the Pre and not have a data plan? I don't feel like shelling out the $$$ for a data plan especially when there is wireless everywhere around my school. Also, will all of the phone's features (Email, IM, etc) work with wireless internet only?
|
|
|
|
|
|
|
|
Open Mic
»Yay Wednesday!
»Go to message
|
|
|
|
The Chairman wrote:How people answer tells a lot about people. I use to work with people with post doctorate degrees from MIT. Brilliant people as long as you discuss things in their field. These days they want people who can think on their feet and multi-task.
My theory was always the cup can only hold so much. Sooner or later, there will be spillage.  Certain basic skills will be lost when someone becomes too specialized in one thing. I'm actually pretty good with finding information about stuff I know nothing about. I've been working help desk support for two years and I always end up searching for solutions for problems I've never faced and programs I've never used. The projects I've worked with recently have to do with stuff I know nothing about and I've been doing lots of research on the internet trying to get stuff to work. What I'm really worried about is if they ask them a question and I can't think of a situation on the fly that fits. When my peer mentor was mock interviewing me I had this problem because I would sit there and blankly stare while thinking. It was a mock interview so I didn't try to stall for time but I'm worried I will into this problem in the real interview.
|
|
|
|
|
|
|
|
Open Mic
»Yay Wednesday!
»Go to message
|
|
|
|
The Chairman wrote:
Be confident. Dress and groom yourself well. Focus on what you know best. If you are stuck, always fall back on the old "I may not know everything, but I can find the answer very fast." line. Which is very true. I use to be a hiring manager and the people who claim to know it all, generally are full of shit. Very few people know it all. They specialize in one thing and everything else they suck at. The best people are the people who know how to get things done when they need to fit a square peg in a round hole. I plan on wearing a suit tomorrow, hopefully I don't get volunteered to make a McDonald's breakfast run like today.
The interview I have tomorrow is a behavior based interview. From what everyone in my dept has told me, they aren't that concerned with your technical knowledge. They ask alot of "Tell me about a time when" questions. There are also going to be two people there, one is HR and the other is a manager in the engineering department.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Open Mic
»Cwazy women!
»Go to message
|
|
|
|
Suh-C wrote:The Chairman wrote:LULz ... I think I fall into the whack job role.  Sorry, you fall in to the creepy category along with Jeff  There's no reason he can't be both
|
|
|
|
|
|
|
|
|
|
|
Open Mic
»Happy Friday!!!
»Go to message
|
|
|
|
cailin wrote:
so now we are all sitting around staring at each other with nothing to do, cursing these clients for dragging us out of bed at this ungodly hour.
bah. think ima do some homework.
oh yeah. happy friday. I usually start 6:45AM-7:00AM and I'm not the first one in either.
|
|
|
|
|
|
|
|
Open Mic
»Access Query Question
»Go to message
|
|
|
|
PaikyPoo wrote:AgentofDarkness wrote:PaikyPoo wrote:try running just the first Execute and see if that returns as expected:
Set myQuery = myDB.QueryDefs("qyrFullReport")
myQuery.Execute Same result  what's the error? Cannot Execute a Select Query
|
|
|
|
|
|
|
|
|
|
|
Open Mic
»Access Query Question
»Go to message
|
|
|
|
PaikyPoo wrote:it appears the use of Set is an action and not a type. if that's true, what or where are you defining myQuery type? I use Dim myQuery as DAO.QueryDef at the beginning of the program and then use Set after wards. I think I may have found the problem. The .Execute command can only be used for Action and DataDefinition Queries. Using the following code
Dim myQuery as DAO.QueryDef
Set myQry = CurrentDb.QueryDefs("qryFullReport")
myQry.Execute
I get the "Cannot Execute a Select Query" error. That is just some test code I'm using to figure out which code/command(s) I need to use.
|
|
|
|
|
|
|
|
Open Mic
»Access Query Question
»Go to message
|
|
|
|
PaikyPoo wrote:prefacing with the knowledge that i have no working experience with VB.
why is the return type of the following line a Set?
Set myQuery = myDB.QueryDefs("qyrFullReport")
shouldn't it be something more along the lines of a db statement? i'm asking because in the next line you're trying to run myQuery.Execute. A regular Set probably doesn't have an .Execute method. The query already exists. My knowledge of VB isn't that good. I don't know how it works but I know enough to get my stuff done. What I don't know I try to figure out from the interwebz/forums. In all the instances I've used Set, I've used it to take an object which already exists (such as a spreadsheet/workbook/PPT shape/Query/DB) and make it into an object in my VB program. I'm replicating the same methodology with this query. I guess I could write an SQL query in VB and execute that but I'm not sure where query would end up. Right now my report has 3 sub reports (1 for each query). Each sub report generates its piece of the report using the respective query. I am completely clueless as to how the Report object works in VB and on top of that, I can't find any help online so I'm trying to avoid changing the query the report references at run time. As the DB is right now, everything works fine. However, it takes quite a while to generate multiple reports. Even worse is that the screen does lots of stuff (60 queries opening and closing for 20 reports) and I don't want users to have to deal with that. I don't know the knowledge level of my end users, so I don't want to give them any opportunity to break something especially since I'm an intern and won't be around (unless they offer me a full time job). I'm also not even sure if anyone can fix this stuff. On top of that, I'm not CS/MIS, I'm EE. I've been teaching myself VB/Access over the last 2 months. I have a decent amount of programming experience with other programs (primarily MatLab) but I haven't coded VB in over 7 years(until now).
|
|
|
|
|
|
|
|
Open Mic
»Happy Friday!!!
»Go to message
|
|
|
|
Suh-C wrote:I need to go pop some wheelies today. Saw a guy doing a wheelie on a Trumpet this morning on the way to work. Then I saw a guy in an R8. He was fast as fawk
|
|
|
|
|
|
|
|
Open Mic
»Access Query Question
»Go to message
|
|
|
|
So I'm running this query (actually 3 queries) using Visual Basic. When the user presses a button, the 3 queries run and a report is generated. Here is the code I'm currently using.
DoCmd.OpenQuery "qryFullReport"
DoCmd.OpenQuery "qryFullReportFact"
DoCmd.OpenQuery "qryFullReportConclusion"
Call DoCmd.Close(acQuery, "qryFullReport")
Call DoCmd.Close(acQuery, "qryFullReportFact")
Call DoCmd.Close(acQuery, "qryFullReportConclusion")
DoCmd.OpenReport "rptFull", acViewPreview
When this code executes, the table the query generates is opened (but is quickly closed). I want the query to execute but I don't want the table to be displayed. Its not a big deal with just 1 report, but I have a separate control which runs X (could be 2 or 200) number of reports(then outputs each to word) successively so this takes quite a while when the number of reports is high. The code is pretty much the same, except there is a loop. Here is the code I tried, but it did not work. I figured I could create an object (myQuery) and set that to the query I made in Access (using design view) and then execute the query object.
Set myDB = CurrentDb()
Set myQuery = myDB.QueryDefs("qyrFullReport")
myQuery.Execute
Set myQuery = myDB.QueryDefs("qyrFullReportFact")
myQuery.Execute
Set myQuery = myDB.QueryDefs("qyrFullReportConclusion")
myQuery.Execute
DoCmd.OpenReport "rptFull", acViewPreview
It keeps getting an error, "Items not found in this collection". Anyone got any ideas? I found the previous idea on the interwebz and it doesn't work. Looked in a VBA Access book and couldn't find anything either. The query is pretty simple. There is a value that is stored as a global variable. The global variable is set using some VBA (value is obtained from a combo box). The query looks at the global variable and pulls all the records which match the global variable for a particular row. All 3 queries do exactly the same thing for different tables.
|
|
|
|
|
|
|
Expression moderator is undefined on line 43, column 30 in default/user_posts_show.htm.
The problematic instruction:
----------
==> if-else [on line 43, column 5 in default/user_posts_show.htm]
----------
Java backtrace for programmers:
----------
freemarker.core.InvalidReferenceException: Expression moderator is undefined on line 43, column 30 in default/user_posts_show.htm.
at freemarker.core.TemplateObject.assertNonNull(TemplateObject.java:124)
at freemarker.core.Expression.isTrue(Expression.java:145)
at freemarker.core.AndExpression.isTrue(AndExpression.java:68)
at freemarker.core.IfBlock.accept(IfBlock.java:80)
at freemarker.core.Environment.visit(Environment.java:208)
at freemarker.core.MixedContent.accept(MixedContent.java:92)
at freemarker.core.Environment.visit(Environment.java:208)
at freemarker.core.IteratorBlock$Context.runLoop(IteratorBlock.java:167)
at freemarker.core.Environment.visit(Environment.java:415)
at freemarker.core.IteratorBlock.accept(IteratorBlock.java:102)
at freemarker.core.Environment.visit(Environment.java:208)
at freemarker.core.MixedContent.accept(MixedContent.java:92)
at freemarker.core.Environment.visit(Environment.java:208)
at freemarker.core.Environment.process(Environment.java:188)
at freemarker.template.Template.process(Template.java:237)
at net.jforum.JForum.processCommand(JForum.java:247)
at net.jforum.JForum.service(JForum.java:215)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at net.jforum.filter.ResponseHeaderFilter.doFilter(ResponseHeaderFilter.java:32)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at net.jforum.util.legacy.clickstream.ClickstreamFilter.doFilter(ClickstreamFilter.java:59)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:619)
2 Wheel Chicago - A Motorcycle and Sportbike Forum - BETA
|
Information |
|
|
An error has occurred. For detailed error information, please see the HTML source code, and contact the forum Administrator. Expression moderator is undefined on line 43, column 30 in default/user_posts_show.htm. |
|
|
|
|
|
Forum Index |
|
|
|
|