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 Wanet Telecoms Ltd 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: *

  1. MrSandman666

    Creating an Outlook-like GUI

    Hello Everybody! I just had this idea of this aaplication. It's supposed to handle quite a bit of data and perform several sorts of operations on each of them, the operations varying on the type of data. The key is, that all sorts of data needs to be accessed very quickly and in a simple way. I...
  2. MrSandman666

    Funky behaviour when hiding undocked Dialog Bar

    Hello again. I'm having this dialog bar in my application and I want it to be hideable, so I added an item to my menu which is supposed to show/hide the dialog bar. This works fine as long as the bar is docked. However, when it's floating it doesn't hide completely. There's still a portion of...
  3. MrSandman666

    Carriage Returns in multiline edit control

    so here I go with another embarassing newbie question. I have a bunch of numerical values (integers) which I want to display in a mutiline CEdit control, each on a seperate line. I tried something like this: sFormatString.Format("%d\n", i); sList += sFormatString...
  4. MrSandman666

    How to access controlls on dialog bar?

    Hi guys. It's been a while but still feels good to be back again. I'm slowly picking up programming again and right now I'm trying to get an MDI application together, which includes a few dialog bars. I'm an absolute newbie when it comes to MFC, so please be kind. I know how to create and...
  5. MrSandman666

    Prevent Window from loosing focus when (non-MDI) child is activated

    Ok, this problem is somewhat intricate. I load a form into a picturebox by setting the picturebox as the forms parent with the API function SetParent. That way I can display forms inside the picture box. I use this to have a somewhat interchangable interface. More specifically, I use it in...
  6. MrSandman666

    creating MDI toolbox

    Hi folks! This problem is so ridicoulusly basic that I'm really ashamed to ask here but I wasn't able to solve it and searching the forum didn't bring any enlightement either... I have an MDI application and I want to create a floating, dockable toolbox, kinda like the project explorer or the...
  7. MrSandman666

    DEFAULT problems

    Hello everybody. I'm trying to create a table in an Access database via SQL. When I enter something like this, everything works fine: CREATE TABLE tblExample ( id INTEGER PRIMARY KEY NOT NULL, txtBla TEXT NOT NULL, intFoo INTEGER NOT NULL ) BUT when I enter this, I get a Syntax...
  8. MrSandman666

    Disabling all controlls - very weird problem

    Hello everybody. Yesterday night I was trying to write a little bit of code to disable/hide all the controls in a form. I did something like this: dim MyControl as Control For Each MyCOntrol In frmMain.Controls MyControl.Visible = false Next MyControl I wrote this off the top of my head...
  9. MrSandman666

    Registering a PHP Script for Search Engines.

    Hello everybody. I got a HUGE Problem!. I work for a company who designs and hosts websites. We designed our own Content Management System and we built a site using that system. The problem is: The client want's us to register his site at search Engines. Now, all the index.php script is, is a...
  10. MrSandman666

    Closing the current window

    Hey folks! I use a PHP script to process some data in a pop up window. It kinda works like this: You klick on an "edit" button and a new window opens, with my script in it. The script reads data out of a database and puts it into a form. The user can then edit this data and when he...
  11. MrSandman666

    copying content of one database to another

    Hi everybody. Let's say I have two databases (DB_A and DB_B). Let's also say that DB_A contains a couple of tables and these tables contain data. Now, I want to copy these tables with all their data to DB_B. Seems like a simple operation but I can't find any documentation about that. Is there a...
  12. MrSandman666

    %"$!&*~ nested SQL Querys

    Hello again! I have another problem that I urgently need your help with. I have an SQL Query which contains aliased fields from a table ( e.g. "SELECT txtLstName as LastName"). I hand this string to another program where a user can build a filter for this query, based on the aliases...
  13. MrSandman666

    weird $PHP_SELF problem

    Hello you! I've been working on my new homepage for a while now and since it is completely based upon PHP, I have to be online in order to test it (write code - upload changes to webhost - look at site - notice stupid mistake - write some more code - upload changes to...). Since Internet access...
  14. MrSandman666

    Updating sets of data

    Hi, it's me again. I'm aware that you have to get sick of me slowly but surely but, hey, I always put off all my problems to the very last moment and now the deadline is approaching and I have to solve all my problems all at once and possibly until yesterday. To get to the point: I'm exporting...
  15. MrSandman666

    removing whitespaces from string

    Hey, it's me again! This time I'm having problems to find out whether a string actually contains any information. Sometimes I have empty strings of various lenght that contain nothing but blanks. Is there a possibility to test this? strlen() counts blank spaces, so that doesn't work unless...
  16. MrSandman666

    Requirements for working with Access databases

    Hi you! I've been writing tools with Visual Basic in order to access databases for a while now and never had any problems with that. To get a little more exact: at work I've been developing programs with VB to read and write data to and from Access databases. Now I wanted to write such a...
  17. MrSandman666

    Adding item at certain position in ListBox

    Hello everybody! I got a little problem here and I hope you can help me. I have a list box into which the user can add items during runtime. Now, lets say we have our brainless whiny user Bob. Now, Bob sits down and starts to work and enter items into the listbox, using my form for input. Now...
  18. MrSandman666

    MrSandman666

    Now, I know this is a newbie question and I know that everybody should theoretically know this but I'm absolutely self-taught and totally out of training so please bear with me here. I open a Dialog using the normal DoCmd.OpenForm and now I need to set the controlls of this from. How do I do...
  19. MrSandman666

    Waiting for a form to close before

    My problem looks like this: I have a form with a listbox that contains teh data of a table. Now I open a form("AddNew") to add a new entry to that very table. I want to update the listbox automaticaly when my AddNew form closes. Ho wdo I do that? After I open the AddNew form in a...

Part and Inventory Search

Back
Top