comp.os.mswindows.programmer.win32
  Home FAQ Contact Sign in
comp.os.mswindows.programmer.win32 only
 
Advanced search
May 2008
motuwethfrsasuw
   1234 18
567891011 19
12131415161718 20
19202122232425 21
262728293031  22
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007    
total
comp.os ... win32 Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  How to embed the xp theme in an application without manifest file...?         


Author: basawaraj.bijjaragi
Date: May 21, 2008 23:57

Dear All,

I am using C++,VS 2005. I need solution to embedding the xp theme into
application without manifest file . As I tried previously using
compiler directive

#pragma comment(linker,"/manifestdependency:\"type='win32'
name='Microsoft.Windows.Common-Controls' version='6.0.0.0'
processorArchitecture='*' publicKeyToken='6595b64144ccf1df'
language='*'\"")

It wokrs fine in VS2005 and later versions(Not in VS 2003, VS 2004),
Is there any solution embedding xp theme in the application without
manifest file....?

Thanks in advance,
Basavaraj Bijjaragi.
1 Comment
  List View - Insert Item         


Author: magix
Date: May 21, 2008 09:20

Hi,

I have a list view control called IDC_LIST1 . I'm using win32, non-MFC.
I have an mdb access table and want to populate records into this list view.
The way the insertion into list view seems very confusing.

// some initialization / declaration of CDatabase, and CRecordSet here...
// some record set open, sql string..

while( !recset.IsEOF() )
{
// Copy each column into a variable
recset.GetFieldValue("Name",sz_Name);
recset.GetFieldValue("ID",sz_ID);
recset.GetFieldValue("Type",sz_Type);

// how to insert record into my list view IDC_LIST1, I read in googling
that there are item, subitem, etc.
// something like SendMessage to LVM_SETITEMSTATE / LVM_INSERTITEM

// can anyone give me a very simpler way to insert those into List View,
is it necessary to have subitem ?
Show full article (0.96Kb)
3 Comments
  Creating and managing compressed folders WIN API         


Author: Jeffrey Adler
Date: May 21, 2008 09:05

Are there any API functions for creating and / or storing to compressed
folders (i.e. ZIP files)?

I want to have my application be able to create a "compressed zip folder"
from an existing directory tree.

Thanks,

Jeff
2 Comments