Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Beeps
  • Order by date
  1. Beeps

    MySql Remote connection frustration

    Thanks for replying dalchri, I did have my user settings setup incorrectly and it turns out that the Windows firewall settings blocking port 3306. Got it working now Thanks
  2. Beeps

    MySql Remote connection frustration

    I'm having problems in trying to remote connect to a database and it's driving me nuts. Database is on server, trying to connect to it through internet using MySQL Control Center with following settings: Name: Lucca HostName: IP address of server UserName: Beeps Password: """" Port: 3306 I've...
  3. Beeps

    I want to allow popups

    Thanks bcastner!! I'm not the submitter, but IEFIX corrected by IE problems, neat utility. Star for you!!
  4. Beeps

    ASP.NET and mySQL

    Oh yeah another quick thing to check, Before your page class, reference the namespace for the driver like: Imports.Microsoft.Data.Odbc
  5. Beeps

    ASP.NET and mySQL

    Hi oldwen, Have you created an ODBC datasource that your connection string points to?
  6. Beeps

    Help with ImageURL property when using absolute File Path

    Thanks link9, Seems like a simple thing, but was struggling with it for a while. Nice simple explination!
  7. Beeps

    Importing text files to Access..to include FN in a field.

    Sure! You can get the file name by using a dialog box to pick your file: Dim dia As Object Set dia = Application.FileDialog(msoFileDialogFolderPicker) If dia.Show = 0 Then 'user pressed cancel Exit Sub Else strFileName = dia.SelectedItems(1) 'user selected a...
  8. Beeps

    Listbox 'selected' property problem

    Hi Ormsk, You could try: Me.yourlistbox.SetFocus Chr (13) I think that the set focus method is available in Access 97. This will set the cursor to your list box and the carriage return will select the first item. Try putting this on your formload event. Hope that it gets you started...
  9. Beeps

    Web Access Failed Dialog Box mystery

    Ok, I think that I really figured out the problem. In IIS, where you configure the IP address of the site, you can have all unassigned or specify an address. In my case, I set the IP address to a specified address from unassigned, then I started having problems again. Once I switched it back...
  10. Beeps

    Web Access Failed Dialog Box mystery

    alright, solved the problem. I just un/re-installed IIS and that seemed to do the trick. That seemed as good as any answer because it only takes a minute. I tried both of your suggestions, and when they didn't work, I went back to step 1. Thanks for the effort. Regards, Brian
  11. Beeps

    How to configure database connection string in one place

    In the web.config file add <appSettings> <add key = "DBConn" value = "Provider = Microsoft.Jet.OLeDB.4.0; data source=C:\Inetpub\wwwroot\[appName]\[DatabaseName].mdb;"/> </appSettings> after the </system.web> tag. Then all you have to do create the connection string anywhere in your app...
  12. Beeps

    Web Access Failed Dialog Box mystery

    Hi, In trying to create or open a previous ASP.Net applications, I get the following error dialog: The default Web access mode for this project is set to file share, but the project folder at 'http://localhost/WebApplication1 cannot be opened with the path 'c:\inetpub\wwwroot\WebApplication1'...
  13. Beeps

    Parsing Mulitple CSV files from Hell??

    Oh yeah, I know that the files are not a .csv, but that's how they are saved coming from the &quot;propritary&quot; database. I also have found out that there are slight deviations from this format. Loops seems to work through this though, but I need to test it further.
  14. Beeps

    Parsing Mulitple CSV files from Hell??

    vb5prgrmr You are the man!! Thanks for the tip. I think that this is a great place to start. I need to brush up on my file access chops since I haven't had to use it in a while. I'm working on incorporating a ADO recordset to capture the data and am having a little trouble. I'll repost as I...
  15. Beeps

    Parsing Mulitple CSV files from Hell??

    Hi, I was wondering what would be the best vehicle to read through a series of .csv files of varying sizes? I would like to be able to sort through the entries. Here's an example of one of the files: Date: 02/12/2004 Time: 01:21:22 System Name: D134P1 Name: 0099A52PDI03 Operator: SYSTEM...
  16. Beeps

    How to update an XML file...

    Hi CharlieIT, I just have had success with the XMLSerializer object for a Windows application. I used the technique here: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconanexampleofxmlserializationwithxmlserializer.asp to serialize database connection...
  17. Beeps

    Windows Programmer Seeking Advice

    Thanks manarth, Answered my own question about books on http://www.linux.org/ Duhhh...Should have known.
  18. Beeps

    Windows Programmer Seeking Advice

    Thanks RhythmAce, Magellem, and manarath. This weekend I picked up a copy of Suse Pro and installed it on an extra laptop. I am completely amazed. It only cost $40, and I could figure out quite a lot for me being a complete beginner in this world. OpenOffice is pretty good for being free...
  19. Beeps

    Windows Programmer Seeking Advice

    Hi all, I was wondering if anybody could give me a direction to place my first steps in using Linux? I've read through a couple forums here to get a idea, but the vast amount of choices has me a little confused on a place to start. Mandrake, Red Hat, GNU....arrgh! My programming experience...
  20. Beeps

    How to get XP-style controls with VB6

    Thanks DRJavaJoe, That's really helpful for me too, here's another star for the tip

Part and Inventory Search

Back
Top