CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: andrelom

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Displaying a .raw image in a VC++ picturebox

    Good day

    Is there any way I can display a .raw image in a VC++ picturebox?? I recieve a image from a fingerprint scanner (MSO 300) and write the raw image data to a .raw file, I can open this...
  2. Replies
    2
    Views
    1,990

    Trouble Writing 8 bit Bitmap

    Good morning from South Africa

    I'm faced with the following problem and have been sitting with this problem for the past two days, if anyone can assist me it will be appriciated greately. So here...
  3. Replies
    1
    Views
    1,531

    Re: CreateUser wizard not working when deployed

    Sorry, my post yesterday was not very clear, but in my defence, I've been working 9 hours straight ;) I'm getting the following error:



    SQLExpress database file auto-creation error:


    The...
  4. Replies
    1
    Views
    1,531

    CreateUser wizard not working when deployed

    I added a CreateUserWizard to my ASP site with an extra step to add Roles to a user, everything is working 100% when compiling this in VS 2008, but when I install this on a remote IIS server, the...
  5. Thread: Oracle JDBC

    by andrelom
    Replies
    1
    Views
    629

    Re: Oracle JDBC

    Never mind ;) Here is the solution



    PreparedStatement oracle_enrolment_st = oracle_connection.prepareStatement("select CFNAME, CSURNAME from CDR_V14 where LUSN = ?");...
  6. Thread: Oracle JDBC

    by andrelom
    Replies
    1
    Views
    629

    Oracle JDBC

    I want to include a user defined variable in my oracle select statement:



    ResultSet oracle_enrolment = oracle_statement.executeQuery("select CFNAME from CDR_V14 where LUSN =...
  7. Replies
    5
    Views
    1,500

    Re: Cast a char to char*

    Thank you for the response, I'm very new to c++ as you can probably see ;) How should I allocate the memory for 'result' ?
  8. Replies
    5
    Views
    1,500

    Cast a char to char*

    I read character for character from a character array and have to pass these values to a function called concatenate that takes 2 char*'s, the problem is that the characters is obviously read as a...
  9. Using _spawnl to restore a MySQL database

    I managed to do a mysqldump to a file on my C: drive test.sql by making use of _spawnl, I now want to restore the MySQL database, here is my code:



    char *args[7];
    args[0] = "--database";...
  10. Re: Trouble restoring a MySQL database with _spawnl

    Is it possible that the application being use to restore the database is not mysql.exe but mysqladmin.exe or mysqlimport.exe.

    Any help will be appreciated
  11. Trouble restoring a MySQL database with _spawnl

    I'm trying to restore a MySQL database by making use of a MySQL dump file and spawnl in the Win32 API, I managed to use spawnl to created the dump file (This worked 100%), but I can't seem to get it...
  12. Thread: mysqldump

    by andrelom
    Replies
    2
    Views
    1,351

    Re: mysqldump

    Thank you, don't know how I missed that
  13. Thread: mysqldump

    by andrelom
    Replies
    2
    Views
    1,351

    mysqldump

    Ok I'm trying to do a mysql dump, but keep on getting the error:



    mysqldump: Can't create/write to file 'C:' (Errcode: 13)


    Any idea on what the problem might be? Here is the function I...
  14. Copy from destination folder to source folder

    I have two files:

    (1) Drupal.cpp (with a function to copy from a destination folder to a source folder)
    (2) UEPS_report_manager_installer.cpp (calling the function in Drupal.cpp)

    See the...
  15. Re: Unidentified reference when incuding header file

    Thank you Lindley

    You were right, I compiled both the files and everything is working now! Guess that is why it is best practice to use a MAKEFILE right? ;)
  16. Re: Unidentified reference when incuding header file

    Yes they are in the same directory. I'm compiling using SciTe, so I just press Ctrl+F7
  17. Unidentified reference when incuding header file

    I have three file:

    Drupal.h
    Drupal.cpp
    install.cpp

    When including the Drupal.h file in the install.cpp file and compiling, everything is 100%, but when I try to run I get the following error:
  18. Replies
    1
    Views
    2,804

    Class-Path in the MANIFEST.MF file

    I'm busy with an application that ports data from an Oracle database to a MYSQL database, when running this application in Eclipse it works fine, when I however run this application as an executable...
  19. Replies
    3
    Views
    760

    Re: help with classes / methods

    Let me help you with the constructors, I assume you are new to Java :)



    public class Car
    {
    String maker;
    String model;
    String cylinders;
    String...
  20. Replies
    3
    Views
    760

    Re: help with classes / methods

    Sound straight forward to me, what do you need help with exactly? Think you would struggle to find someone that will write this for you because that will defy the purpose :) But we can help to...
  21. Thread: Faster MySql

    by andrelom
    Replies
    9
    Views
    1,150

    Re: Faster MySql

    The IN block return 3 rows
  22. Replies
    13
    Views
    2,025

    Getting started with C#

    This might be a stupid question but I really don't know. I'm very interested in starting with C#, but where do I get a compiler, do I have to download the microsoft .NET framework and will this cost...
  23. Thread: Play again?

    by andrelom
    Replies
    3
    Views
    811

    Re: Play again?

    Please specify what kind of program you are trying to restart. Is the program a third party application outside of java or is it a java procedure/function?
  24. Thread: Faster MySql

    by andrelom
    Replies
    9
    Views
    1,150

    Re: Faster MySql

    All the other tables are small with the following PK's and sizes:



    district table: PK= id size=408 B
    council: PK=id size=256 B
    village: PK=id size=360 B


    You ask if I can do a join, will...
  25. Replies
    2
    Views
    1,422

    Re: Running java jar file/Making executable

    Had to right click on the file and set "open with" to javaw.exe, now it's working :)
Results 1 to 25 of 32
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured