Forum: C# 16 Hours Ago |
| Replies: 5 Views: 93 Re: Selected Text Yeah. Custom window with a text box and a button. I used a text box so I can edit the contents. I use the window for error messages and for a "Comments" window in the app. |
Forum: C# 2 Days Ago |
| Replies: 5 Views: 93 Re: Selected Text catch (Exception ex)
{
Message box = new Message(ex.Message, "Error");
box.Show();
} |
Forum: C# 3 Days Ago |
| Replies: 5 Views: 93 Selected Text I have a windows form box that is supposed to just display a message. Unfortunately, whenever the box pops up, it has all the text selected.
I cannot figure out how to stop that. Any ideas? |
Forum: C# 9 Days Ago |
| Replies: 3 Views: 110 Re: DB Provider You realize that the connection string format is not the issue right? I know how to format the string, it just can't find the provider. |
Forum: C# 10 Days Ago |
| Replies: 3 Views: 110 DB Provider I am trying to use an existing access db file with my c# app. When I try to connect, it says that:
"The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine."
How do I register... |
Forum: MS Access and FileMaker Pro 13 Days Ago |
| Replies: 0 Views: 148 Jet 4.0 I am trying to access a .accdb file from my c# app. when i run the app, it tells me that I don't have Microsoft.Jet.4.0 Provider installed.
I know that I need the Jet provider to access MS Access... |
Forum: MS Access and FileMaker Pro 17 Days Ago |
| Replies: 1 Views: 251 Access and SQLite Does anyone know how to convert a .accdb file into a SQLite compatible format?
I am looking to migrate an existing DB from Access to an app I am writing to add and retrieve the information for me... |
Forum: MS Access and FileMaker Pro 17 Days Ago |
| Replies: 2 Views: 268 Using Access file I have an Access database that I use to keep track of account and inventory information for my job. I am currently writing a C# app to allow me to search through and pull up the information from a... |
Forum: Perl Mar 25th, 2008 |
| Replies: 3 Views: 448 Re: CHARLINT There are server logs. But I don't know which one of 50 or so it's in, and I don't have permission to download them, only view them.
I'll see if I can get a hold of the log. |
Forum: Perl Mar 25th, 2008 |
| Replies: 3 Views: 448 CHARLINT I'm helping my dad out with some of his website issues, so any help is appreciated.
He is getting an error (and no I don't have the exact text at the moment) that there was a fatal error in... |
Forum: PHP Mar 13th, 2008 |
| Replies: 8 Views: 401 Re: PHP on Apache It says "CLI.exe has stopped working. Windows is trying to find a solution."
Then it pops up with a bunch of error messages. |
Forum: PHP Mar 11th, 2008 |
| Replies: 8 Views: 401 Re: PHP on Apache K, it looks like when PHP was originally installed, it wasn't setup with a server. Reinstalled it and now it crashes every time I try to run a script.
I'm running on Vista 64 Ultimate. Anyone know... |
Forum: PHP Mar 10th, 2008 |
| Replies: 8 Views: 401 PHP on Apache I feel a little like an idiot for asking this but....
I have Apache 2.2 installed on my computer just to test my pages and scripts for my web engineering class. Whatever version of PHP that came... |
Forum: JavaScript / DHTML / AJAX Mar 9th, 2008 |
| Replies: 4 Views: 856 |
Forum: JavaScript / DHTML / AJAX Mar 5th, 2008 |
| Replies: 4 Views: 856 Re: Forms with AJAX Here are the relevant JavaScript functions. The tables in the HTML files load just fine.
//Sets up the page
function initialize()
{
getInventory(document.getElementById("weapons"),... |
Forum: Perl Mar 5th, 2008 |
| Replies: 4 Views: 1,122 |
Forum: JavaScript / DHTML / AJAX Mar 5th, 2008 |
| Replies: 4 Views: 856 Forms with AJAX I am trying to do a store page for my class. I have a perl script that generates simple HTML tables. The store pages uses ajax to load the tables into the form.
The form has all the elements, but... |
Forum: Perl Mar 5th, 2008 |
| Replies: 2 Views: 598 Re: Unknown Error Turns out the problem was the colons. Colons aren't allowed in file names.
Silly me.... |
Forum: Perl Mar 3rd, 2008 |
| Replies: 2 Views: 598 Unknown Error I am trying to process the results of a survey. I load the current results from an XML file, update them, then write them back to the file. I am get a 500 Internal Server Error when I run it from a... |
Forum: Perl Mar 3rd, 2008 |
| Replies: 4 Views: 1,122 Problems Moving Files I am trying to move files and rename them with a date-time stamp I generate. I have a survey and my perl script processes the POST query string. Once I have the query string, I am using XML::Simple... |
Forum: C# Feb 20th, 2008 |
| Replies: 2 Views: 674 Re: Metadata I guess I was kinda hoping there was some kind of ID3 tags for video files. I'm thinking about just writing a plugin for WMP to read tags that I can add in with another program. |
Forum: C# Feb 19th, 2008 |
| Replies: 2 Views: 674 Metadata Just for fun, I want to write myself an app to read metadata from media files and optionally rename them. The renaming part isn't all that hard, but I don't know how to get the metadata from an AVI... |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 9 Views: 1,162 Re: IE AJAX issue I think I found the problem. Seems that I have to be running the page as an HTTP page instead of a local page. Firefox doesn't care but it looks like IE doesn't let local pages access HTTP... |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 9 Views: 1,162 Re: IE AJAX issue //Quick check for AJAX functionality. Copied from w3schools.com
function MakeXMLReq()
{
var xmlHttp = null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
} |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 9 Views: 1,162 Re: IE AJAX issue It doesn't ever get that far. It returns the "Access denied error" on:
xmlReq.open("GET", url, true); |
Forum: JavaScript / DHTML / AJAX Feb 8th, 2008 |
| Replies: 9 Views: 1,162 Re: IE AJAX issue i have the table save in HTML format in a separate file.
i'm using an xmlHttpRequest object in firefox to retrieve it and doing this:
div.innerHTML = xmlReq.responseText;
like i said, works in... |
Forum: JavaScript / DHTML / AJAX Feb 7th, 2008 |
| Replies: 9 Views: 1,162 IE AJAX issue I am trying to insert/hide a table in my page using AJAX.
Works perfectly in Firefox. IE 7 gives me "Error: Access is denied" for the following line: xmlReq.open("GET", url, true);
Any ideas why? |
Forum: JavaScript / DHTML / AJAX Jan 29th, 2008 |
| Replies: 5 Views: 1,160 Re: Dynamic table Don't ask me why, but I finally got it working.
I just deleted everything out of the page and started from scratch. Which somehow made the onload event work. Thanks for the help everyone! |
Forum: JavaScript / DHTML / AJAX Jan 28th, 2008 |
| Replies: 5 Views: 1,160 |
Forum: JavaScript / DHTML / AJAX Jan 28th, 2008 |
| Replies: 5 Views: 1,160 Dynamic table Basically I have a table that I generating using javascript. I wrote a function to build the row and I call it a bunch of times with different parameters.
I know the individual functions work... |
Forum: JavaScript / DHTML / AJAX Jan 26th, 2008 |
| Replies: 3 Views: 902 Re: Parsing HTML Thanks for the help. Unfortunately, my teacher has limited this particular assignment to DOM Level 0 and that object is Level 3. Maybe in another assignment. |
Forum: JavaScript / DHTML / AJAX Jan 26th, 2008 |
| Replies: 3 Views: 902 Parsing HTML I am trying to circumvent the whole "javascript can't read files, that's server-side" thing.
basically i have a order form with a table inside it. I want to be able to load the rows of the table... |
Forum: PHP Nov 23rd, 2007 |
| Replies: 3 Views: 407 Re: Broken Script don't have the code, or access to it really. i was just kinda hoping someone else has run into this before and might know the problem off the top of the head. |
Forum: PHP Nov 20th, 2007 |
| Replies: 3 Views: 407 Broken Script I'd just like to start this thread by saying that I have absolutely NO knowledge of PHP what so ever. I do mostly C++, C#, and Java. But my dad is having a problem so I am posting this as a... |
Forum: Java Nov 12th, 2007 |
| Replies: 2 Views: 370 J2me I am trying to write a fairly simple app for a Dell Axim running PocketPC 2003 and the Mysaifu JVM. I'm using NetBeans to develop the app.
NetBeans emulators (weak as they are) can run my app just... |
Forum: Java Nov 9th, 2007 |
| Replies: 6 Views: 443 Re: Possibilities I know that Sun doesn't make a VM for PocketPC 2002. IBM does and I have the files, but I can't figure out how to get the PDA to recognize them and use them.
I already have NetBeans and Mobility... |
Forum: Java Nov 9th, 2007 |
| Replies: 6 Views: 443 Possibilities Here's the backstory real quick:
Class project in my java class to write a program to help the lab assistants manage the students who need help. Trying to use a PDA in the project.
Here's the... |
Forum: C++ Mar 28th, 2007 |
| Replies: 4 Views: 851 Re: System.String.LastIndexOf problem Well, I fixed the LastIndexOf part. I finally realized that I was doing a search from back to front and the index I told it to start from was 0. So it never looked at the string.
That's working just... |
Forum: C++ Mar 28th, 2007 |
| Replies: 4 Views: 851 |
Forum: C++ Mar 28th, 2007 |
| Replies: 4 Views: 851 System.String.LastIndexOf problem I am writing a program to batch rename files. I am trying to take the file name (which include folders) and remove everything before the last slash.
The problem is that LastIndexOf("\\") always... |