Forum: HTML and CSS Jun 18th, 2009 |
| Replies: 3 Views: 475 i got it working. just needed to find and swap all the single quots from the tags so i could do source code find. I was using advanced text search so i would look only inside p tags.
thanks. |
Forum: HTML and CSS Jun 15th, 2009 |
| Replies: 3 Views: 475 I am trying do a search and replace with Dreamweaver and regex. Specifically, I am trying to replace all the ' with ' but it keeps inserting '
I can't find an option to change or... |
Forum: HTML and CSS Jun 10th, 2009 |
| Replies: 2 Views: 415 I have an ebook in HTML that is about 10000 lines long. I am looking to find and fix the misspelled words, words that don't have spaces etc.
Is there anything out there that can take an input... |
Forum: C# May 11th, 2009 |
| Replies: 1 Views: 1,906 I have a couple radio button groups in my Windows Form that I would like to bind to a data table.
When I query the database for a single record, I just grabbed row zero and used if-else to select... |
Forum: C# May 4th, 2009 |
| Replies: 1 Views: 334 Apparently, it decided to start working. Looks like the line I have above does exactly what I thought it would.
Thanks anyway. |
Forum: C# May 4th, 2009 |
| Replies: 1 Views: 334 I have a combobox that has state abbreviations. It is filled from a dataset table, which is read in from an xml file.
The combo box populates just fine. I want the selected value and text to... |
Forum: C# May 2nd, 2009 |
| Replies: 8 Views: 1,187 I'm retracting my last post. Turns out the DISTINCT keyword works just fine with DataAdapters and DataSets. Here's the code I used:
SQLiteDataAdapter city = new SQLiteDataAdapter("SELECT DISINCT... |
Forum: C# Apr 30th, 2009 |
| Replies: 8 Views: 1,187 I got it working. Turns out SQLite.NET does implement the DISTINCT keyword but it doesn't work with Datasets for some reason.
Here's the code:
SQLiteCommand get = new SQLiteCommand("SELECT... |
Forum: C# Apr 28th, 2009 |
| Replies: 8 Views: 1,187 As far as I know SQLite itself allows the distinct keyword but the SQLite.NET wrapper doesn't implement it I don't think. I'm still experimenting.
And what's wrong with a dataset? |
Forum: C# Apr 27th, 2009 |
| Replies: 8 Views: 1,187 does it matter that "data" is a dataset? i can't foreach through a dataset. |
Forum: C# Apr 27th, 2009 |
| Replies: 8 Views: 1,187 I have a combo box that is populated from entries in a SQLite table. The entries are city names.
Here is the code for the data binding:
cbb_City.DataSource = data;
cbb_City.DisplayMember =... |
Forum: Python Apr 5th, 2009 |
| Replies: 6 Views: 828 i am trying to shutdown a python script.
the python script is a ping server. i want the script to run in a while True loop until i tell it otherwise.
using threads and threading i could get it... |
Forum: Python Apr 4th, 2009 |
| Replies: 6 Views: 828 I am writing a ping app for my networking class. I have the ping part of the code working perfectly, my issue is in shutting down my "ping" server. If I run it with while True, not even ctrl-C will... |
Forum: C++ Mar 18th, 2009 |
| Replies: 9 Views: 489 Can't tell you why it wasn't working the first time, because definitely tried guards before I even posted this. I gave up for a while and just focused on getting my code working. Now it's working.
... |
Forum: C++ Mar 18th, 2009 |
| Replies: 9 Views: 489 I know I should have guards. However, if I include the guards, NONE of the includes happen. It says it can't find ANY of the data types included in the guard. |
Forum: C++ Mar 18th, 2009 |
| Replies: 9 Views: 489 the enum file doesn't include anything.
as for guards, i tried using them but it says that it cant find any of the types from the includes. |
Forum: C++ Mar 18th, 2009 |
| Replies: 9 Views: 489 yes. it's just a cpp file (probably could be .h) that holds some enums. no actual code in it or includes |
Forum: C++ Mar 18th, 2009 |
| Replies: 9 Views: 489 I like really clean code so I want to pull all of the common includes into a separate file and then include that single file in all my other files. Also makes it easier if I start using a new or... |
Forum: Python Mar 2nd, 2009 |
| Replies: 4 Views: 367 didnt know about that module. thanks for the help. |
Forum: Python Mar 1st, 2009 |
| Replies: 4 Views: 367 I have a HUGE text file (over 60,000 lines) and I'm using python to do regex fixing on the file.
I want to wrap any lines over 100 characters, and wrap on a space.
I know I can use ".{100}" to... |
Forum: C# Oct 10th, 2008 |
| Replies: 5 Views: 1,038 Never mind. Stupid mistake. Sorry I wasted your time. I misnamed the property I was trying to access. Fixed it.
If you know how to make the string auto update when I change records tho, that would... |
Forum: C# Oct 10th, 2008 |
| Replies: 5 Views: 1,038 Update: There is only 1 of the bindings that's causing a problem. I added them in 1 at a time until all but the i_Panel worked. When I uncomment that one, they all break.
... |
Forum: C# Oct 9th, 2008 |
| Replies: 5 Views: 1,038 I select the parameters for the search and hit go. That populates the binding list.
I found a workaround but I would like to find a real solution. At the end of the search function, I call... |
Forum: C# Oct 9th, 2008 |
| Replies: 5 Views: 1,038 I have a flat file database program I'm writing using SQLite3 and I've run into a problem and a question.
Problem: I have the various fields on the forms linked to the results of my queries using... |
Forum: C# Sep 16th, 2008 |
| Replies: 2 Views: 395 |
Forum: C# Sep 15th, 2008 |
| Replies: 2 Views: 395 I'm pretty sure this isn't possible but I want to be sure.
I have a form with text boxes. I want to be able to link the text boxes to members of an object.
Is there anyway that I can make the... |
Forum: C# Aug 23rd, 2008 |
| Replies: 7 Views: 1,397 |
Forum: C# Aug 21st, 2008 |
| Replies: 7 Views: 1,397 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# Aug 19th, 2008 |
| Replies: 7 Views: 1,397 catch (Exception ex)
{
Message box = new Message(ex.Message, "Error");
box.Show();
} |
Forum: C# Aug 18th, 2008 |
| Replies: 7 Views: 1,397 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# Aug 12th, 2008 |
| Replies: 3 Views: 733 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# Aug 11th, 2008 |
| Replies: 3 Views: 733 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... |
Forum: MS Access and FileMaker Pro Aug 8th, 2008 |
| Replies: 0 Views: 722 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 Aug 4th, 2008 |
| Replies: 1 Views: 1,905 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 Aug 4th, 2008 |
| Replies: 2 Views: 895 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: 730 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: 730 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: 839 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: 839 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: 839 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... |