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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by foxnet

  1. foxnet

    record updates

    Thanks for the help guys, I have used debugger and every times it goes through the the "select * from sysfile into cursor csr_sys", it pulls the same value. It appears that the replace command never enters the new number into the table until the form closes. It is currently happening on...
  2. foxnet

    record updates

    I have some logic in a push button to save a record with a sequential number, which is stored in a control table. The logic only works once unless I close the form and re-enter it again. Does anybody know what could be causing the problem. I have added the code to obtain and store the...
  3. foxnet

    transparency with bitmaps

    I am trying to draw some bitmap and set some of the bits to transparent. I have been searching the web and found some pages that use ddutil.cpp and ddutil.h for directdraw. I have tried to add these programs to my aplication but cannot get it to compile (getting errors with all lines containg...
  4. foxnet

    irregular bitmaps

    I am trying to find a way to place a bitmap image on my program's background. I have no problem if the bitmap is a rectangle, however I currently need a way to place a round image as a bitmap. I was trying to find out if there is a function, that when drawing a bitmap ignores a color mask...
  5. foxnet

    reading a bitmap

    I am trying to develop a simple card game and use a 800x600 bitmap (created through MS Paint) as a background image. I display the cards also in a bitmap image. My problem comes when I try to remove the cards, I redraw the entire background bitmap again, which causes parts of the screen to...
  6. foxnet

    Drawing Bitmaps with BitBlt

    Hi, I am trying to display bitmap images in my program, but for some reason certain images will not display. I have created the images through MSPaint. The only difference I did was by scanning the images in or drawing through paint. The files that were drawn through paint are getting saved...
  7. foxnet

    control in a loop

    Jim, My condition was the value of the checkbox on the form. If the box is check the loop should run, when it is not checked it should break out
  8. foxnet

    control in a loop

    Hi, I am trying to write a program that read files in a directory and move them to specific folders based on their extension. The files are sent over from another computer through ftp. I have a form that contain a command button and a check box. The check box is used to have it run...
  9. foxnet

    Uniquess of Index violated

    Mike, If I have SET DELETED ON, should I be able to reuse the key. I now I can do that for a regular index it is just the candidate index that is giving me the error.
  10. foxnet

    Uniquess of Index violated

    I have a form that I keep getting this error message. I can create the problem by deleting a record and re-adding it with the same key. The table is using a "Candidate" index and the form has SET DELETED ON. If I change the index to "Regular", I can re-add the record. Is there something I...
  11. foxnet

    reading a text file

    Hi, Does anyone see why I cannot open a list of text files for input. I keep getting an "Access denied" when trying to issue the FOPEN command. Thanks searchdir = alltr(thisform.txt_in.value) + "*.*" gnumber = ADIR(gaMessages, searchdir) && Create array for ncount = 1 to gnumber fname...
  12. foxnet

    dialog box location

    Is there a way to prevent the user from moving a dialog box after it is displayed on the sceen. I can prevent it from moving by creating the dialog box with "control" set, but that removes the top title bar. Thanks
  13. foxnet

    disable controls

    I have a Dialog box that contains combo boxes, check boxes and edit boxes. When the user selects some of the check boxes I need to disable some combo and edit boxes. Is there a way to disables the combo boxes after they are created. The only way I get get it working is by redrawing the boxes...
  14. foxnet

    populating combo box

    When I set focus, the box turns blue, but when I click the arrow to drop down the list, the entire box is blank. I do have a list box and I can scroll through those entries, which I have added through LB_ADDSTRING. It is just the drop down combo I cannot get working. Is it OK to add the...
  15. foxnet

    populating combo box

    on my first question I tried using the app wizard which made everything with classes. I didn't understand how to read the code it made so I switch to the win32 application and made the main function an APIENTRY WinMain. I haven't tried to set a value to the combobox yet. I have only tried to...

Part and Inventory Search

Back
Top