Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

Djibril

@Djibril
About
Posts
27
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Apparently right now, David Cameron is appealing to the nation ...
    D Djibril

    They commanded the David to take _step by step__ u understand? For example I want the boost::library for cgi but they always fight on the "what" in place of just give me the what i have been reading, Damned how.

    Where there is a WISH, there is a WILL.

    The Lounge json announcement

  • Apparently right now, David Cameron is appealing to the nation ...
    D Djibril

    RFC1867 HTTP file upload

    Where there is a WISH, there is a WILL.

    The Lounge json announcement

  • Software problems cause judge to postpone hearing on NOTW hacking allegations
    D Djibril

    I think this section is for this. If you recall what you made with you time library you'll be in the middle of the fire

    Where there is a WISH, there is a WILL.

    The Lounge question announcement

  • Software problems cause judge to postpone hearing on NOTW hacking allegations
    D Djibril

    What are you guy's talking about? I believe I have been cast-re but still you know what you depends on. Peace out!

    Where there is a WISH, there is a WILL.

    The Lounge question announcement

  • Hello World.
    D Djibril

    By the time you are writing this, $this sees who pays for the persistance... I love logging my boss. ... I am TIME, DAMN, you know when you possess your interrupts!

    Where there is a WISH, there is a WILL.

    The Lounge com

  • CDateTimeCtrl
    D Djibril

    This solved my problem! Thank you so much. Where there is a WISH, there is a WILL.

    C / C++ / MFC c++ help question

  • CDateTimeCtrl
    D Djibril

    Hi, I added a CDateTimeCtrl on my dialog. Then I added a CTime member variable like this: in MyDialog.h : CTime m_dateWarranty; in MyDialog.cpp : DDX_DateTimeCtrl(pDX, IDC_DATETIMEPICKER_WARR, m_dateWarranty); Link gives the following error: error LNK2001: unresolved external symbol "void __stdcall DDX_DateTimeCtrl(class CDataExchange *,int,class CTime &)" (?DDX_DateTimeCtrl@@YGXPAVCDataExchange@@HAAVCTime@@@Z) Thanks, Where there is a WISH, there is a WILL.

    C / C++ / MFC c++ help question

  • CDateTimeCtrl
    D Djibril

    Too bad. This is not really what I needed. SetMonthCalColor() only applies to the calendar that pops up when you click on the combo box'x arrow. What I want to change is the background color of the EditCtrl-like control of the CDateTimeCtrl. Thanks anyways. Where there is a WISH, there is a WILL.

    C / C++ / MFC tutorial question

  • CDateTimeCtrl
    D Djibril

    Silly me. I took a look at the help on CDateTimeCtrl but I did not see this method. Thank you. That should do the job. I try it right away. Thanks. Where there is a WISH, there is a WILL.

    C / C++ / MFC tutorial question

  • CDateTimeCtrl
    D Djibril

    Do you know how to change the background color of a CDateTimeCtrl control ? Thanks. Where there is a WISH, there is a WILL.

    C / C++ / MFC tutorial question

  • GUI question
    D Djibril

    Hi, What is the better way to create a GUI from a bitmap image? I have to create a GUI like the RealJukeBox's or winamp's and I was wondering if someone here could help with some infos. Thanks in advance. Where there is a WISH, there is a WILL.

    C / C++ / MFC question graphics help

  • calling a C-dll function from java code
    D Djibril

    That's right. I found JNI but it sounds like it is very slow. And you can't use existing dll. 1.You write the native methods declaration in a java class 2.Then you compile the java class (javac) 3.Generate a header file from this class using javah -jni ... 4.include this header in you dll project and provide and implementation for the generated header functions. 5.Rebuild your dll From this point, you can use the dll via the java class methods we wrote at step 1. I tried using JNI. It works because I could change the source of the dll and I wanted to use. But it is surprisingly slow. Now I am looking forward to using sockets. Thank you. Where there is a WISH, there is a WILL.

    Java java help question

  • calling a C-dll function from java code
    D Djibril

    Hello, I am very new to java. I want to call a C-dll function from my java code and I don't know how. Can you please help? Thanks. Where there is a WISH, there is a WILL.

    Java java help question

  • listCtrl question
    D Djibril

    Hello, I am looking for a listCtrl with editable items and checkBoxes. Anyone know where I can find it? Where there is a WISH, there is a WILL.

    C / C++ / MFC question

  • ideas please
    D Djibril

    Ok. You helped me a lot. That's just too bad you don't accept credit cards :rolleyes: I thank you again. Actually, I am a software engineer with 5 years experience in programming realtime systems. I also used to be an analyst-programmer (Dbase IV) for 2 years. But things changed since then. Just to say that I have some notions in programming. After reading your suggestions, I think that I'll implement my own database (binary file with my own format). I only have one thread writing informations to the database while another thread have a read-only access to this database. Take care. Where there is a WISH, there is a WILL.

    C / C++ / MFC database algorithms

  • ideas please
    D Djibril

    >This isn't a complete solution, but should help you get started. Ok. Let's see ... >1. First you need establish the database requirements. e.g. exactly what do you need to store, search, retrieve from your DB. How big are the images, how many, etc. I need to store sound files (wav, ...) with a date and time associated to every piece of data that represent 1 seconde of sound. The user can then search for a sound that have been recorded at a specific time. The program records continuously ... so I have a very large quantity of informations. >2. With that in hand, select a database engine. There are many, each has its own strengths, weaknesses and costs. Oracle and SQL server are enterprise databases. They are beefy and very capabley (expensive). Access is good for smaller or simpliler applications. May others also exist. I'm thinking about SQL servers. It sounds that it is more portable and robust. And once you know how it works, you have no problem switching to another one. QUESTION: Are these free? or do I have to by something? >3. Create the actual database schema (you don't need to populate it, just define it). Ok. >4. Finally ready to start designing/coding the app. At this point you can select accessing technologies. The main ones available are ODBC, DAO, ADO. ADO is the current favorite. I read a little about these technologies. I am more thinking about using ODBC. It sounds that I is faster than DAO (if I don't use Access database). Also, my database will be on a remote computer. I read that ODBC is more efficient in this case. >If this is a significant application, you may want to consult a DB expert to help you design your database and select a db engine. This really is a significant application. I am used to get things done by reading, asking questions, prototyping, ... Do you think that these are things we can't learn on the fly ? >Hope this helps, >Bill This helped a lot. Thank you very much. Where there is a WISH, there is a WILL.

    C / C++ / MFC database algorithms

  • non client area & context help
    D Djibril

    I did not see this article. Thanks for answering. The problem is I don't want to derive my Dialog from a class other than CDialog (I know that the given class derives from CDialog). As this seems to be a little tricky, I changed my mind. Now I just want to add a button on the title bar. When the user clicks on it, I open my own html help. Thanks again. Have a good day. PS: I don't know how to rate posts. You tell me how, I rate yours. Where there is a WISH, there is a WILL.

    C / C++ / MFC c++ help question learning

  • non client area & context help
    D Djibril

    Thanks but I know this. The problem is: when you add minimize and maximize button to the dialog, the help button does not work anymore. Thanks. PS: how can I rate your post ? Where there is a WISH, there is a WILL.

    C / C++ / MFC c++ help question learning

  • non client area & context help
    D Djibril

    This sounds simple: I just want to add a help button on a dialog's title bar. Using the resource editor, I added the Context Help extended style. The help button "Question Mark" shows up on dialog's title bar but nothing happens when I click on it. If I don't add minimize and maximize button to the title bar, the help button works fine. I am using VC++ 6.0 on win 2000. Any help/suggestion will be appreciated. Where there is a WISH, there is a WILL.

    C / C++ / MFC c++ help question learning

  • ideas please
    D Djibril

    Hello, I am new to database programming (actually, I am not started yet). I am recording some data in real-time (voice). Now I need to allow the user for searching for some data given a specific time. I was told that I should consider using SQL, or DAO or ODBC. I have no clue what the best thing to use is. So I am looking for some information. Any suggestion (books, articles, code, ... ) will be largely appreciated. Thanks a lot. Where there is a WISH, there is a WILL.

    Database database algorithms
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups