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 Chriss Miller 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: realm174
  • Content: Threads
  • Order by date
  1. realm174

    Faster way to populate a combobox

    Hello, I have a form on a VB app that has 2 comboboxes. When I load that form, I need to fill the comboboxes with data from a data table. What I have right now works very well, except for the fact that it is excruciatingly slow since the table has about 24000 records in it. Here's what I have...
  2. realm174

    Add controls to tabpages

    Good morning all, I am not sure what happened, but I had a tab control with multiple tabs, and each tab having its own set of buttons and textboxes and labels and dgv and all... Today, I went back to work on the application, and I noticed one button that wasn't supposed to be on the first tab...
  3. realm174

    Summarizing data in SQL

    Hello everyone! SQL isn't my cup of tea, I'm more of a Vb.NET guy. I can do simple INSERT or SELECT queries, but anything past that is beyond me. So I've come across an issue that I have no idea how to go about. I have data in a SQL Server (MS server 2008 if that matters), and each record looks...
  4. realm174

    Access to the path is denied

    Hello people, it's been a while... I'm trying to rename a folder located inside the %appdata% folder. I can do it in Windows Explorer no problem, but I can't do it in a batch file, nor can I do it in vb.net. Here's what I have for code: Public Class Form1 Public RootFolder As String =...
  5. realm174

    Flatfile into Structure

    Hello, I am trying to read a single line text file into a user defined structure. The content is variable in length, but is always the same format. Here's the Structures definition I came up with: Structure basetype Dim dep As String Dim arr As String Dim alt As...
  6. realm174

    Datagridview row.index

    Hi guys, I searched and googled, but I still can't wrap my head around this one. First, a small section of code pertaining to my issue: Restart: For Each row In DataGridView1.Rows If row.Index = -1 Then Exit For If (DataGridView1.Item(1, row.Index).Value = True)...
  7. realm174

    Import database, tables, and relationships from MySQL

    Hi guys, I am trying to find a way to, I guess, export a database from MySQL and import it in Access. I don't really care for the data, as that can easily be recreated. But I would prefer to not have to re-create all the tables, indexes and relationships if at all possible. Google showed a few...
  8. realm174

    Closing another application

    Good day folks! I need to write an application that does the following: - Close an already running program - Move/rename a file - Restart the application that was originally running. Step 2 and 3 should be fairly easy, but is there any docs anywhere explaining how I can terminate a running...
  9. realm174

    MySQL to SQL Express

    Hi everybody, I have an application that was previously running with MySQL, and I am in the midst of converting it to us SQL Express 2008. I originally had a .sql file I was running to create my tables, the indexes etc... that was created with the assistance of a friend. It worked very well...
  10. realm174

    3d Acceleration and Vista

    Computer is Acer Aspire E700 Running Vista Home Premium SP2 Video card is ATI X1800 (or ATI 4670, same issue) Driver is ATI v9.8 So here's the issue. When i install the driver, do a dxdiag, Acceleration is "enabled". I reboot the computer (complete shutdown, power off and back on), Acceleration...
  11. realm174

    Moving a project

    - Using VB 2008 Express - Vista (not sure that really matters) I have a few different projects that have been saved in the same location as one another. As a result, I have a mess and loads of files. Is there an "easy" way to move projects to their own folders, in such a way that related files...
  12. realm174

    Conditional recalculating

    Good morning, I am trying to figure out if there is anyway to recalculate a cell if and until a certain value is met... here's the idea: Cell P3 contains a rand() formula that grabs the value of a cell in a different workbook. From that value, there's a long complicated boring calculation done...
  13. realm174

    Spam filtering

    Howdy! Here's what I would like to do... I have relay turned off, however, I am receiving over 300 "attempts" per day, from the same originating IP range, to spam through my mail server. Is there a way to "intercept" those emails, and forward them to abuse@spammingdomain.com automatically...
  14. realm174

    num lock

    Howdy friends! I am running a FPD26a app in a windows environment (from 98 to xp, on a network). In a lot of cases, when people alt-tab to other applications and come back to the fpd one, the status of num luck has changed Is there a fpd way to force the num lock in a certain state? Cheers...
  15. realm174

    Trim a count??

    Howdy friends and neighbors! :) Here's my problem... which I sorta fixed for now, but I'm curious to know if anyone knows anything about this... I have a dfb that has multiple records of all types. One of the field is called calltype which is of C(5). At one point, I need to know how many of...
  16. realm174

    index.html loading, but not the content

    Howdy!! I installed RedHat 9, and running Apache. When trying to access the server (http://192.168.0.102), it loads the index.html page that is in there, shows all the text, but none of the images or java applets. They show as broken. Yes, the files are all there, and I already verified...
  17. realm174

    Wireless / Wired sharing issue

    Howdy! I'm having a problem. First, let me describe how the lan is hooked up here... Internet | Hub (192.168.0.1) / | / | / |...
  18. realm174

    Container

    Howdy! Ok, I'm stumped... I have an application all put together that reads some information out a text file and acts upon what it reads. For the most part, it all goes well. A little more details tho. The text file contains incident information on the status of different area of a car. Each...
  19. realm174

    Who's on that port?

    Here's the setup: -- Computer A / Internet -- Router/Firewall -- Computer B Ideally, what I would like to know is if there is a way to monitor who (from the internet) is...
  20. realm174

    Findfirst/findnext

    Howdy people! Is there a way to do a findfirst/findnext in FPD26a? I need to find every file "*.usr" (they're just plain text files) and read the content on each. Problem is, they can be any name, not a set of specific filenames. So I was hoping something along the lines of: ...

Part and Inventory Search

Back
Top