User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 392,222 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,669 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 41
Search took 0.01 seconds; generated 2 minute(s) ago.
Posts Made By: toadzky
Forum: C# 16 Hours Ago
Replies: 5
Views: 93
Posted By toadzky
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
Posted By toadzky
Re: Selected Text

catch (Exception ex)
{
Message box = new Message(ex.Message, "Error");
box.Show();
}
Forum: C# 3 Days Ago
Replies: 5
Views: 93
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
Question 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
Posted By toadzky
Re: Forms with AJAX

Thanks. That fixed it.
Forum: JavaScript / DHTML / AJAX Mar 5th, 2008
Replies: 4
Views: 856
Posted By toadzky
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
Posted By toadzky
Re: Problems Moving Files

Ok. Thanks. Sorry about the typo. I forgot the "open(debug, ">debug.txt")" line.
Forum: JavaScript / DHTML / AJAX Mar 5th, 2008
Replies: 4
Views: 856
Posted By toadzky
Question 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
Posted By toadzky
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
Posted By toadzky
Question 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
Posted By toadzky
Help 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
Posted By toadzky
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
Posted By toadzky
Question 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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
Question 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
Posted By toadzky
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
Posted By toadzky
Re: Dynamic table

Nope. Still nothing.
Forum: JavaScript / DHTML / AJAX Jan 28th, 2008
Replies: 5
Views: 1,160
Posted By toadzky
Question 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
Posted By toadzky
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
Posted By toadzky
Question 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
Posted By toadzky
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
Posted By toadzky
Question 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
Posted By toadzky
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
Posted By toadzky
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
Posted By toadzky
Question 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
Posted By toadzky
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
Posted By toadzky
Re: System.String.LastIndexOf problem

I'm using VC++, Windows Forms App. I think its just C++ .NET.
Forum: C++ Mar 28th, 2007
Replies: 4
Views: 851
Posted By toadzky
Help 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...
Showing results 1 to 40 of 41

 
All times are GMT -4. The time now is 5:14 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC