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

    delete command with sqlite

    hi, the class listed below is used to access a sqlite database. read data from database or insert or update data works fine.delete however does not. what I want to do is delete one record by given id from one table (where it's the primary key) and all records by given id from a second table. on...
  2. fheyn

    computer shuts down unexpectedly

    os is winxp, sp3 which is frequently used. the last time I did so it came up with the extended boot menu. I selected 'normal start' and it shut down. tried again, same thing. replaced the hdd, tried to install winxp, first step it does, then install process restarts pc, I see winxp logo for half...
  3. fheyn

    problem with bitmap

    hi, i need some help in graphics display of bitmap. i load a bitmap from file, resize it and display it. when form is closed the bitmap is save to a config-file as byte[]. when i load the bitmap from config-file i get the following exception : "rotatedImage.Palette" caused excetion of type...
  4. fheyn

    hi, hope there's somebody around i

    hi, hope there's somebody around in the world of web-programming who remembers old BASIC and MASM. here is what i got : compiled BASIC-program start.exe compiled BASIC program prog1.exe three libraries of asm-modules asm.lib, prog.lib and start.lib, where asm is the base-library. prog needs...
  5. fheyn

    pointer

    hi, void f(MyStruct* p) { p = new MyStruct; } is called like this : f(ptr1); with ptr1 declared as MyStruct* ptr1; I think passing the pointer as above is incorrect 'cause p has a correct value but ptr1 is 0 after the function call. so what's wrong ? thanks in advance
  6. fheyn

    Function pointer to 'extern C'

    Hi good morning (well, at least here in germany it's morning) now it's more than a day I've been trying to solve the following problem : from c++-application I call extern function func1 func1 has as argument pointer to func2. i cannot modify func1 and func2 however I'm unable to set the...
  7. fheyn

    RmDir

    hi, below code of function DelTree pFolder's attribute is &H10 why do I get E 75 with RmDir ? using the API-functions I encounter same problem sEntry = Dir(sFolder & "\*.*", vbDirectory) Do While Len(sEntry) > 0 If sEntry <> "." And sEntry <> ".." Then If (GetAttr(sFolder & "\" & sEntry)...
  8. fheyn

    test ocx with client

    hi, up to now I've spent 8 hours trying to test an ocx with a client. the client works fine with the ocx but so far I've been unable to get the ocx running with the client for debugging. Any ideas ?
  9. fheyn

    ComboBox.Text ????

    A combobox-item read from database should be shown as 'selected'. I tried ComboBox.Text=rs!ID but this causes an error. Any ideas ? thanks in advance
  10. fheyn

    menuitem color

    hi, how can I change the textcolor of a specific menuitem ? I tried the menu-API-functions but don't have the slightest idea how to set the menuinfo-structure so that it will change the textcolor ?
  11. fheyn

    CommandButton bitmap

    hi, until now I had it like this: cmdDo.Picture = PictureBox1.Image if style-property is set to 1 it will put a bitmap on the CommandButton. works fine! Now the commandbutton is created at runtime (using Form.Controls.Add) and the above statement won't show the bitmap 'cause...
  12. fheyn

    SSTab

    Hi, using SSTab, how do I add a control to a specific tab at runtime?
  13. fheyn

    SSTab - Control

    hi, how do I set the forecolor of a specific tab to a different color. Can I set a specific tab to "disabled" ?
  14. fheyn

    FileSystemObject

    Hi, the FSO-methods MoveFolder and DeleteFolder will always give me runtime-error 70 ( access denied) althoung I have set parameter foce=true. How can I solve this problem ? thanks in advance
  15. fheyn

    mdb-question

    with more and more configuration added to the current application I'm working on, I changed from multiple configuration files to access-database. what's the best way to ditribute the database and which components do I need ? thanks in advance
  16. fheyn

    tif to multitif

    hi, I used the Kodak-control to convert a given number of tif-files to one multitif-file. with windows-XP however I find that the Kodak-control will not install (it says some DLL is missing). Installing that DLL on XP won't help either 'cause there's errors at runtime. Is there an eqivalent...
  17. fheyn

    Calling Dialog from Sub Main

    Hi, My application normally doesn't use a dialog. In sub Main I check some configration-data and if that file doesn't exist or the data is incomplete I want to call a dialog to enable the user to create the file and/or add the data. However Settings(that's the dialog).Show exutes AFTER sub Main...
  18. fheyn

    User defined data types

    Hi, I'm using a public class function to retrieve an applications configuration data. To do this, I pass a struct to the function. On compiling there's an error message which says that 'userdefined datatypes to be used as function-parameters must be defined in a public object module'. A public...
  19. fheyn

    access registry

    Hi, is there a function like &quot;READ_NEXT_REGISTRY_ENTRY&quot; ? somebody can help ? thanks
  20. fheyn

    stop the application

    hi, I'm working on a program, which once startet will run for- ever, looking form time to time for files within a specific folder. If found it will process these files. To stop the program I createt a tray-icon. When clicked-on it shows a dialog which allows to stop the programm. If no action is...

Part and Inventory Search

Back
Top