Hollosi Information eXchange /HIX/
HIX CODER 1586
Copyright (C) HIX
2002-07-30
Új cikk beküldése (a cikk tartalma az író felelőssége)
Megrendelés Lemondás
1 Video player (mind)  9 sor     (cikkei)
2 Re: C++ ShortCut (mind)  53 sor     (cikkei)
3 Delphi5 error (mind)  15 sor     (cikkei)
4 Video lejatszas C++ - ben (mind)  10 sor     (cikkei)
5 Re: C++ ShortCut (mind)  53 sor     (cikkei)
6 MASM32 V6 (mind)  7 sor     (cikkei)

+ - Video player (mind) VÁLASZ  Feladó: (cikkei)

Keresek egy programozot, aki C++ - ban tudna irni egy olyan programot, ami
egy videot jatszik le loop-ban, azaz amikor a video vegeter, rogton kezdi
ujra lejatszani. Nagyon fontos, hogy AZONNAL kezdje a videot ujra
lejatszani, minden kesedelem es villogas nelkul.

A feladat megoldasa surgos, tehat az ajanlatokat (ar ajanlattal egyutt US
dollarban) surgosen varom maganlevelben: .

Laci
+ - Re: C++ ShortCut (mind) VÁLASZ  Feladó: (cikkei)

: > Sziasztok!
: >
: > Hogyan lehet a Desktopra es a startmenube shortcutot letrehozni
: > vc++-ban?
: > Van vmi otlet?

Itt van egy kodreszlet a PopUpBuster-bol (http://www.PopUpBuster.com).

int CShortCuts::CreateShortcut(CString where,int flag)
{
CString lpszPathObj = theApp.m_Root;
 lpszPathObj += '\\';
 lpszPathObj += theApp.m_pszExeName;
 lpszPathObj += ".exe";                        //ez adja meg a path-et a
program-hoz
CString lpszDesc="Ide ird be a tooltip help-et";
HRESULT hres;
IShellLink* psl;
 hres = CoCreateInstance(CLSID_ShellLink, NULL, // Get a pointer to the
IShellLink interface.
  CLSCTX_INPROC_SERVER, IID_IShellLink, (LPVOID *) &psl);
 if (SUCCEEDED(hres))
 {
  IPersistFile* ppf;
// Set the path to the shortcut target and add the
// description.
  psl->SetPath(lpszPathObj);
  psl->SetDescription(lpszDesc);
  if (flag == SHORTCUT_LAUNCHBAR)
  {
   psl->SetArguments("-ie");                        //ide irhatsz be
argumenteket a programhoz
   psl->SetIconLocation(lpszPathObj,0);    //ezzel valaszthatod ki az icon-t
  }
// Query IShellLink for the IPersistFile interface for saving the
// shortcut in persistent storage.
  hres = psl->QueryInterface(IID_IPersistFile,
  (LPVOID*)&ppf);

  if (SUCCEEDED(hres))
  {
  WCHAR wsz[MAX_PATH];
// Ensure that the string is Unicode.
   MultiByteToWideChar(CP_ACP, 0, where, -1,
             wsz, MAX_PATH);
// Save the link by calling IPersistFile::Save.
   hres = ppf->Save(wsz, TRUE);
   ppf->Release();
  }
  psl->Release();
 }
 return 1;
}
+ - Delphi5 error (mind) VÁLASZ  Feladó: (cikkei)

Udv mindenkinek!

Delphi5 Enterprise alatt tobbretegu adatbazissal probalkozom.
Amelyik gepen fejlesztek minden OK (mondjuk :-), fut rendesen a server es a
kliens is.
A telepitot IS Express for Delphi5 -el csinalom. (nem jelez hibat a telepito
elkeszitesenel)
Telepitem egy szuz Win98-ra. Elinditom a klienst. DCOMConnection.Connected
:= true. (eddig jo, server is elindul) ClientDataSet.Active := true   =>
Hibauzenet: "Hiba tipusfuggvenytar/DLL betoltesekor"
Ez igy nem ad tul sok tampontot, hogy hol, es mit javitsak.
Remelem akad valaki, aki ki tud segiteni!

Valaszokat elore is koszonom!
Sipi
+ - Video lejatszas C++ - ben (mind) VÁLASZ  Feladó: (cikkei)

Keresek egy programozot, aki C++ - ban tudna irni egy olyan programot (vagy
lenne mar egy kesz programja), ami egy videot jatszik le loop-ban, azaz
amikor a video vegeter, rogton kezdi
ujra lejatszani. Nagyon fontos, hogy AZONNAL kezdje a videot ujra
lejatszani, minden kesedelem es villogas nelkul.

A feladat megoldasa surgos, tehat az ajanlatokat (ar ajanlattal egyutt US
dollarban) surgosen varom maganlevelben: .

Laci
+ - Re: C++ ShortCut (mind) VÁLASZ  Feladó: (cikkei)

: > Sziasztok!
: >
: > Hogyan lehet a Desktopra es a startmenube shortcutot letrehozni
: > vc++-ban?
: > Van vmi otlet?

Itt van egy kodreszlet a PopUpBuster-bol (http://www.PopUpBuster.com).

int CShortCuts::CreateShortcut(CString where,int flag)
{
CString lpszPathObj = theApp.m_Root;
 lpszPathObj += '\\';
 lpszPathObj += theApp.m_pszExeName;
 lpszPathObj += ".exe";                        //ez adja meg a path-et a
program-hoz
CString lpszDesc="Ide ird be a tooltip help-et";
HRESULT hres;
IShellLink* psl;
 hres = CoCreateInstance(CLSID_ShellLink, NULL, // Get a pointer to the
IShellLink interface.
  CLSCTX_INPROC_SERVER, IID_IShellLink, (LPVOID *) &psl);
 if (SUCCEEDED(hres))
 {
  IPersistFile* ppf;
// Set the path to the shortcut target and add the
// description.
  psl->SetPath(lpszPathObj);
  psl->SetDescription(lpszDesc);
  if (flag == SHORTCUT_LAUNCHBAR)
  {
   psl->SetArguments("-ie");                        //ide irhatsz be
argumenteket a programhoz
   psl->SetIconLocation(lpszPathObj,0);    //ezzel valaszthatod ki az icon-t
  }
// Query IShellLink for the IPersistFile interface for saving the
// shortcut in persistent storage.
  hres = psl->QueryInterface(IID_IPersistFile,
  (LPVOID*)&ppf);

  if (SUCCEEDED(hres))
  {
  WCHAR wsz[MAX_PATH];
// Ensure that the string is Unicode.
   MultiByteToWideChar(CP_ACP, 0, where, -1,
             wsz, MAX_PATH);
// Save the link by calling IPersistFile::Save.
   hres = ppf->Save(wsz, TRUE);
   ppf->Release();
  }
  psl->Release();
 }
 return 1;
}
+ - MASM32 V6 (mind) VÁLASZ  Feladó: (cikkei)

Hi Coderek!

Az alábbi programot keresem: MASM32 V6
Remélem tudtok segíteni, minden vele kapcsolatos link jól jönne.

előre is kössz:
     Lacika

AGYKONTROLL ALLAT AUTO AZSIA BUDAPEST CODER DOSZ FELVIDEK FILM FILOZOFIA FORUM GURU HANG HIPHOP HIRDETES HIRMONDO HIXDVD HUDOM HUNGARY JATEK KEP KONYHA KONYV KORNYESZ KUKKER KULTURA LINUX MAGELLAN MAHAL MOBIL MOKA MOZAIK NARANCS NARANCS1 NY NYELV OTTHON OTTHONKA PARA RANDI REJTVENY SCM SPORT SZABAD SZALON TANC TIPP TUDOMANY UK UTAZAS UTLEVEL VITA WEBMESTER WINDOWS