Forum: MySQL Jul 17th, 2009 |
| Replies: 8 Views: 626 Well, I spoke to soon. Now I get a different kind of error.
pritaeas, I have added these two lines to PHP.ini :
extension=php_mysql.dll
extension_dir="/ext"
I have done all the steps in... |
Forum: MySQL Jul 16th, 2009 |
| Replies: 8 Views: 626 I went back and redid the php installation from scratch and did the extra steps you mentioned. Now it works. |
Forum: MySQL Jul 16th, 2009 |
| Replies: 8 Views: 626 So, MySQL is no longer enabled by default, so the php_mysql.dll DLL must be enabled inside of php.ini. How is this done? I searched php.ini and I did not find php_mysql.dll.
In my php.ini file... |
Forum: MySQL Jul 15th, 2009 |
| Replies: 8 Views: 626 I have MySQL running such that I can open a client command line and log on and make databases, tables, etc.
I wanted to do some AJAX. Doing AJAX with ASP, SQL Server, etc is not advisable since... |
Forum: Database Design Jul 7th, 2009 |
| Replies: 2 Views: 528 The problem is in doing a clean uninstall.
I ran Revo Uninstaller and it worked. |
Forum: Database Design Jul 4th, 2009 |
| Replies: 2 Views: 528 Why is installing MySQL on Windows Vista such a bear? For someone who is not
a professional database administrator, it seems like I am jumping through hoops.
This page... |
Forum: C# Jan 21st, 2009 |
| Replies: 1 Views: 291 Platform Builder is a tool for building a Windows CE Operating system on your computer and then loading it on a Windows CE device.
All this is done through Platform Builder. And I do it all... |
Forum: C# Jan 13th, 2009 |
| Replies: 4 Views: 929 What is the point of using set and get in C Sharp?
It seems variables are used differently in this language than in C++.
For some reason, you have to have a static variable defined like this:
... |
Forum: XML, XSLT and XPATH Dec 12th, 2008 |
| Replies: 0 Views: 676 XML can do a very cool trick.
If you include the name of an XSL file in the XML file, you can produce what looks just like a formatted HTML file when you load the XML file into a browser.
The... |
Forum: C# Dec 1st, 2008 |
| Replies: 4 Views: 709 I have done a few things. I have created a console app to use as the front-end to the project. Then I have added the DLL as a reference like this:
1) In the Solution Explorer right-click... |
Forum: C# Nov 30th, 2008 |
| Replies: 4 Views: 709 After someone creates a DLL in C# using the Microsoft Visual development environment, how would another programmer take that code, make a new project that includes the DLL's source and make a GUI... |
Forum: C++ Aug 3rd, 2008 |
| Replies: 2 Views: 457 I have heard a lot of talk about hashtables from time to time. They are supposed to be very cool ways of storing data where the index you use to look up the data is somehow the data itself.
But... |
Forum: Windows Software Apr 10th, 2008 |
| Replies: 3 Views: 575 Update:
Here is the situation. I am setting up a new computer that does not have Outlook Express or any other previous email software. I am trying to move the settings and the email accounts... |
Forum: Windows Software Apr 9th, 2008 |
| Replies: 3 Views: 575 When I use Thunderbird to import my address book, it does not ask where
to look to import the file. Is there some special place I need to put
my outlook express file for the thunderbird software... |
Forum: IT Professionals' Lounge Mar 14th, 2008 |
| Replies: 4 Views: 673 What is the UAC and how do I see if it is on? |
Forum: IT Professionals' Lounge Mar 13th, 2008 |
| Replies: 4 Views: 673 I am on a brand new VISTA computer now. I am doing ASP.NET development.
So I need to turn on IIS. When I do, I notice that the IIS feature is
not checked.
... |
Forum: C# Feb 7th, 2008 |
| Replies: 1 Views: 2,060 How do you pass an array of integers as an argument to a method in C#? |
Forum: C# Feb 1st, 2008 |
| Replies: 2 Views: 525 Is a COM object included in a project in the C# IDE much like it is in VB where you so include it graphically in a design view? |
Forum: C# Feb 1st, 2008 |
| Replies: 2 Views: 602 While trying to run someone elses example code, Visual Studio 2005 never produced an executable even though the build process was successful. Do you have any idea why this might be? |
Forum: C# Jan 31st, 2008 |
| Replies: 4 Views: 2,704 That did not work.
Maybe there is a problem with the way I am using the DLL. How do I simply add a DLL to a project and expose its methods? All I am doing is this so far. I have added the DLL... |
Forum: C# Jan 26th, 2008 |
| Replies: 2 Views: 8,331 How do I find the Process ID of a program? I need to know it to attach a process for WinDbg. And, yes, I tried googling this question but everything seemed to be for a Linux system. |
Forum: C# Jan 24th, 2008 |
| Replies: 4 Views: 2,704 I thought that my problem was how I was declaring a manifest file.
But now I think I can safely rule this out.
I think the probem lies in the way I am loading the DLL/COM object
that the... |
Forum: C# Jan 24th, 2008 |
| Replies: 13 Views: 6,689 using System.Windows.Forms;
fixed the problem.
I got this compile message:
error CS0103: The name 'MessageBox' does not exist in the current context
But not now.
Muchas Gracias |
Forum: C# Jan 24th, 2008 |
| Replies: 13 Views: 6,689 There must be some sort of "using ..."
declaration missing.
I got a compile error:
error CS0246: The type or namespace name 'MessageBoxButtons' could not be found (are you missing a using... |
Forum: C# Jan 23rd, 2008 |
| Replies: 13 Views: 6,689 What is a good way to code a messagebox in C#, like the AfxMessageBox in used in Visal C++?
Also, is there a good way to write information out to a log file? |
Forum: C# Jan 21st, 2008 |
| Replies: 0 Views: 918 Getting a C# program with a manifest file to run in the debugger
----------------------------------------------------------------
How do I declare a manifest file in the Visual Studio IDE for C#... |
Forum: C# Jan 18th, 2008 |
| Replies: 0 Views: 661 Getting a C# program with a manifest file to run in the debugger
----------------------------------------------------------------
Does anyone know how to declare Manifest Files in the Visual... |
Forum: C# Jan 9th, 2008 |
| Replies: 0 Views: 638 I am new to C# and I am playing with my first bits of code.
I am building an application from scratch and looking at some
old code to model my new app.
The strange thing is this. I know that... |
Forum: C# Jan 7th, 2008 |
| Replies: 4 Views: 1,199 The sample code I am looking at is supposed
to be a console app. And yet it has the
same sort of structure that a windows app
would have.
Since I am unable to build the app yet, I
am unsure... |
Forum: C# Jan 4th, 2008 |
| Replies: 2 Views: 2,347 Can someone explain the nesting in C#? You have a namespace. Inside the namespace, you have a class. Then, inside this class, you have the main function. Why is it set up this way. Are all... |
Forum: C# Jan 4th, 2008 |
| Replies: 1 Views: 671 How do I create methods in C# like I used to in C++ MFC classes?
Aren't there methods for the forms that are called during initialization of a class, for example? I am talking about some sort of... |
Forum: C# Jan 4th, 2008 |
| Replies: 1 Views: 2,099 How do I switch from code view to form view in C# IDE? I am able
to do it when I first create a form, but if I close and reopen a
project, that ability seems lost. |
Forum: C# Jan 4th, 2008 |
| Replies: 2 Views: 1,326 I have been able to create a C# program from scratch.
When I do so, I automatically get a list of References like this:
http://i67.photobucket.com/albums/h292/Athono/csharp.png
When I open a... |
Forum: C# Dec 31st, 2007 |
| Replies: 1 Views: 1,556 I have written some simple C# programs just to get my feet wet.
Now I have decided to build a co-workers program and step through it. I am not used to all of the problems that might arise when... |
Forum: C# Dec 19th, 2007 |
| Replies: 6 Views: 2,925 IIS was installed and started after the .NET framework.
This was the cause of some problems.
But I fixed it.
On the command line, I went to
C:\WINDOWS\Microsoft.NET\Framework\
and went to... |
Forum: C# Dec 19th, 2007 |
| Replies: 6 Views: 2,925 OK, I fixed everything so that it will work -- or so I thought.
I decided to install some ASP.NET sample code. The installation gave me an error saying that I needed to install the latest version... |
Forum: C# Dec 13th, 2007 |
| Replies: 6 Views: 2,925 I have written my first "Hello World" program in ASP. I thought I would post here how it is done and ask if anyone can suggest how to incorporate C#.
The first step was to download the free... |
Forum: C++ Nov 15th, 2007 |
| Replies: 4 Views: 1,640 OK, I am going to use the STL list. I want to have each node have two strings. Here is how far I have gotten:
#include <list> // list class-template definition
using namespace std;
... |
Forum: C++ Nov 14th, 2007 |
| Replies: 4 Views: 1,640 I got a list of items to program in Visual C++.
I could write a linked list from scratch but I want to do something special and best. I am thinking about a hash table.
What is best, linked... |