I’m not sure I understand the question correctly. By “<i>I want to add a name of a location to a field that is a drop down list of locations</i>” you mean that you are going to INSERT a new record in the table that stores the location names ? Anyway, keep in mind that ‘queries’ [...]
You just need to put each instruction in a new line: <pre>Private Sub Form_BeforeInsert(Cancel As Integer) Room = DLast(“Room”, Me.RecordSource) Name = DLast(“Name”, Me.RecordSource) OtherField = DLast(“OtherField”, Me.RecordSource) End Sub</pre>
I don’t know much about MS Access, but I think some statements can only be executed through ADO, and will throw errors when trying to execute them from the SQL View user interface. So, I would try creating a module, with some code like this: <pre>Sub CreateTable() CurrentProject.Connection.Execute _ “CREATE TABLE Manufacturers” _ & “( [...]
DB/2 runs on three IBM “mainframes” but the instructions would be very different on each. What is your system i-series (AS/400), AIX, or a true mainframe? Phil
The best way to get better at something, including writing code, is to practice by doing, then have someone review your work and show you where you used the correct techniques and where you used the incorrect techniques.
For what it’s worth, you may consider disabling any realtime virus protection during the copies.
Having been in the industry for the past two decades I’ve seen nothing but growth in these areas and I believe there are studies to back this up. Here are some <a href=”http://www.principlelogic.com/careers.html”>resources for setting goals and getting ahead in your IT career</a>.
well you cannot view the contents of a logical file of type *LF,but you can view the physical file for which that logical file belong. i suggest you , you write GO QUERY, and then write the name of the logical file and specify the library, and press F5 with no selection,
Telecommunication Certificates * TIA CTP: The Telecommunications Industry Association’s (TIA) Convergence Technologies Professional * TIA CCNT: Certified in Convergent Network Technologies
I doubt that’s happening..please show us both commands and the values ..it’s likely a difference in library list or a value in the where clause. Phil
Hi I did not see the exact code in question but do you have a pgm described varaible as the “Library name”? <i>That is not allowed when SQL is embedded in RPGLE.</i> Jim …….. Yes, it is allowed. You just have to code it properly. — Tom Is commitment control on? If not, are you [...]
Here’s an example from the MSDN library (VS 6): <b>In the following example, an application allocates environment and connection handles. It then connects to the SalesOrders data source with the user ID JohnS and the password Sesame and processes data. When it has finished processing data, it disconnects from the data source and frees the [...]
<a href=”http://office.microsoft.com/en-us/access/HA010345481033.aspx”>Here</a> is info on how to create access forms. Once you got that down add code like <a href=”http://www.peterssoftware.com/c_emfa.htm”>this</a> to send out an emai. ————————————————————————————————————————— Hi there, First of all thanks for your help. The code that you provided was really working. Now that i have one problem here. When drafting email how do [...]
Goals…what are your goals? What do you want to do and where do you want to be in 1, 5, 10 years from now. Here are some<a href=”http://www.principlelogic.com/careers.html”> IT career resources</a> to help you get started.
The fact that you are using XAMPP doesn’t matter. Once XAMPP is running it’s just like a regular server install. <a href=”http://dev.mysql.com/usingmysql/java/”>Here</a> is the documentation for using MySql from java.
I would take Carlosdl advise and read up. Here is how I would do this: CREATE TABLE department( departmentId INT NOT NULL PRIMARY KEY AUTO_INCREMENT, departmentNumber VARCHAR(16), departmentName VARCHAR(64) NOT NULL, isEnabled TINYINT NOT NULL ); CREATE TABLE course( courseId INT NOT NULL PRIMARY KEY AUTO_INCREMENT, departmentId INT NOT NULL, courseNumber VARCHAR(16), courseName VARCHAR(64) NOT [...]
Your going to have to use a third party DLL. I would reccomend avoiding this all togetehr and instead installing something like: <a href=”http://sourceforge.net/projects/pdfcreator/”>PDFCreator</a> on the users computer so they can print the crystal report to pdf.
A form is just a method of displaying the records, so it doesn’t go about ordering them in any way, unless you specify a sort order in your query. If the records have an id of some description that you can use to group them, then use that as the order by clause, and then [...]
Create an empty Physical File with the name of your choice. Be sure the file record length matches the spool file width. (EX: 80 or 132 or someting else) Once the file has been built use the Command CPYSPLF to populate the Physical File. When copying the spool file specify *NONE for the Key Word [...]
I would say that almost every job position would require you to work as a part of a team, and would involve communication with other people to some degree. You could consider a service/help desk position if you want a more people-oriented job. The question is: do you like software testing ? Do you think [...]





