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: *

  • Users: Kherozen
  • Content: Threads
  • Order by date
  1. Kherozen

    RAM question

    Hi, I'm currently working on a program that need to hold specific address in memory and to be sure that it will never be swap by the OS for another process and the solution of doing a while(true) to hold the process is not a working solution here ... so I want to know how can I reserve and...
  2. Kherozen

    Lock Controls

    Hi, Probably a redundant question, so I apologize for not having search as deeply as possible. I got a form with a mandatory control(field) to fill and I want to lock any other controls(fields /combo/list) if that control is empty and pop-up a message if some try to fill them before the...
  3. Kherozen

    Printing without MFC

    Hi, I've build a small application(Console Application) that build a report and save it to a textfile and at the end, I want to automaticly print that file. SO I tried System("print C:\report.txt"); and I got the dos prompt saying "C:\report.txt is currently being printed&quot...
  4. Kherozen

    Question about fstream and double

    Hi, I've got a simple question and I can't find the answer anywhere. my problem is fairly simply my program is writing numbers into a file and I need those number to show always and only 2 numbers after the point (like 5.00, 4.59, etc.) I try myFile.precision(2) but it seems thats not it...
  5. Kherozen

    Access And Excel Weird Behavior While Importing

    Hi, I'm currently trying to import data from excel spreadsheet to Access Tables and I have been running into some weird behavior. ok is it normal that I can't import more than 20 records... if I put more Access tell me that descriptive error message "an error occured while importing...
  6. Kherozen

    Easy One (hope so)

    Hi, ok in a SQL query you need to put ' ' around string , # # around Date and WHAT around currency?! jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E. W. Dijkstra.
  7. Kherozen

    Tables problem with adp project

    Hi, I just transfer my Database from my computer(with a Sql server on it) to the server (with SQL server on it too) I got access to it that's ok I can play with the forms and data. but I can't open(even in design mode) most of the tables, there's no Error message most of the time but...
  8. Kherozen

    Wrong Forum but please look at it

    Hi, (I know it's the wrong forum but I think that's the one with the most activity on it so I got more chance to get an answer ) I just transfer my Database from my computer(with a Sql server on it) to the server (with SQL server on it too) I got access to it that's ok I can play with the...
  9. Kherozen

    Table Inaccessible

    Hi, I just transfer my Database from my computer(with a Sql server on it) to the server (with SQL server on it too) I got access to it that's ok I can play with the forms and data. but I can't open(even in design mode) most of the tables, there's no Error message most of the time but...
  10. Kherozen

    Tables inaccessible

    Hi, I just transfer my Database from my computer(with a Sql server on it) to the server (with SQL server on it too) I got access to it that's ok I can play with the forms and data. but I can't open most of the tables, there's no Error message most of the time but some tables show that message...
  11. Kherozen

    Trusted Connection

    Hi, I've got a Database and a SQL Server(MSDE2000 from Office XP CD) installed on my machine. I just installed MSDE 2000 onto the company server and try to move the Database but I get "Login Failed for user 'mtl-w01\jgrenier'. Reason : Not Associated with a trusted SQL server...
  12. Kherozen

    Vartype() question

    When i'm using Vartype in my form, it always return vbString(8)(except if the control is a date control where it return 7) even when the control(a textbox ) contain only integers in fact it's impossible to be something else since it's bound to a table that allow only a integer in that field...
  13. Kherozen

    DarkSide of the Null

    Hi, ok can someone explain me what I am doing wrong : I got some code to Clear all the Field of a form with subforms and it goes like that(Btw if there's a easiest/simple way tell me, i'm quite new to vba/access) For Each myControl In Controls Select Case myControl.ControlType...
  14. Kherozen

    Hi I got a little issue here, i

    Hi I got a little issue here, is there a way to change the cycle of state of a checkbox , I mean actualy a checkbox is Null/True/False/True/False/True/False ... when you click on it multiple time, I would like to make it Null/True/False/Null/True/False ... am I clear, is it possible to do?
  15. Kherozen

    Need Design Ideas

    Hi, I want to create checkbox beside textbox so that if the checkbox is checked then the textbox will appears as a column in a datasheet(ie if the Project Checkbox is checked, I want the column "Project" to appear). I got everything ok but ... since I got a hundred of textbox how...
  16. Kherozen

    Separate string into word

    The code that follow could be use in many occasion : Don't know if there's a better solution but that one works well, so if you want to pass more than one Argument to a form when you open it. 'In the On_Click Event of the button that open the form Dim stOpenArgs as string Dim Delim as String...
  17. Kherozen

    Tokenize OpenArgs

    Hi, my concern is that OpenArgs let suppose that I can pass more than one Argument (OpenArg"S") but how do I tokenize them so that I able to Parse them (basicly I want to read each one of them and do some threatment on each argument) jul ^_^
  18. Kherozen

    As Database inexistant!

    Hi, I'm currently doing a custom search and I try copying the code posted here which is Dim dbName as Database Dim qryDef as QueryDef set dbName = currentdb() ... ...'here I construct stSQL it isn't useful for this post set qryDef =dbName.QueryDefs("myQuery") qryDEf.SQL = stSQL...
  19. Kherozen

    runSQL in adp ?

    Hi, i'm currently quite new to the adp and MSDE 2000 world and I was wondering what is the equivalence of doCmd.runSQL ?
  20. Kherozen

    Change Combobox to Textbox under circumstance

    Hi, What I want to do is to cast a combobox into a textbox if the form doesn't "allow edit" ... I got a solution which is to superpose a combo box and a textbox both bound to the record and toggle the visible property depending of the property (ie "allow edit") of the...

Part and Inventory Search

Back
Top