search for: startpage

Displaying 20 results from an estimated 27 matches for "startpage".

Did you mean: start_page
2009 Jan 07
1
Unable to print - Error 'StartPage Failed'
My first topic. I am unable to print under Wine 1.1.12. I can see my printers, but I get a error 'StartPage Failed' when I try to print in Notepad. Printing in Ubuntu Hardy is possible. Any help would be welcome. Rick
2014 Jun 27
4
Missing features, RLY?!? & readme1st again
...destroy TDB files, use CTDB. - CTDB does not work on an AD-DC, use a separate file server. - DFS works only server-based, not domain-based? - DFS works only for Administrators? - DFSR is not implemented. Is this list correct? Is it complete? This list should be in a Samba4-ReadmeFirst on the Wiki startpage. I once started such a page, should I update the "limitations" section and finally put a link to it on the startpage? Will the Wiki allow me to edit the startpage? Where exactly should the link be? https://wiki.samba.org/index.php/Samba_Readme_First
2007 Dec 14
0
Samba BDC Problems
...heck failed. Rejecting auth request from client testpc machine account testpc$ my samba smb.conf: Testparm Load smb config files from /etc/samba/smb.conf Processing section "[netlogon]" Processing section "[startpage]" Loaded services file OK. Server role: ROLE_DOMAIN_BDC Press enter to see a dump of your service definitions smb.conf [global] workgroup = test server string = Samba map to guest = Bad User pass...
2004 Nov 21
2
[DEVEL] Virtual Methods
...der and source files, or should I ignore them? They are not listed on the WxWidgets documentation page, but they are in the wxWidgets source file, as being public virtual methods. Examples: StartDoc //virtual method overriding the DC::StartDoc EndDoc //virtual method overriding the DC::EndDoc StartPage //virtual method overridng the DC::StartPage EndPage //virtual method overriding the DC::EndPage If I need trial and error I can do that, but thought maybe you followed a certain pattern... Thanks, Zach
2009 Aug 14
9
Printing from wine problem - loosing my hair
...untu 9.04 minimalist setup runing on a XEN vps. I only installed a few things like Wine, NX, cups (and cups-pdf), XFCE4. Works like a charm in every way except printing from Wine. I can print from native Linux apps to PDF but I get an error in Notepad and any other wine running app for that matter, StartPage failed. There are no errors in the /var/log/error_log or any mention of the incident in any logs under /var/log/cups/ I have been looking for the solution for a week. Anybody have any idea what could be the problem? I have a similar setup on a Ubuntu 8.04 although the difference there is that I ins...
2013 Aug 01
2
[LLVMdev] Error building compiler-rt
.../llvm/src/projects/compiler-rt/lib/enable_execute_stack.c /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:53:29: error: cast to 'unsigned char *' from smaller integer type 'unsigned int' [-Werror,-Wint-to-pointer-cast] unsigned char* startPage = (unsigned char*)(p & pageAlignMask); Thanks Pranav On Thu, Aug 1, 2013 at 7:27 AM, Alexey Samsonov <samsonov at google.com> wrote: > Hi Pranav, > > On Thu, Aug 1, 2013 at 1:54 AM, Pranav Garg <pranav.garg2107 at gmail.com>wrote: > >> Hi, >> >> I...
2013 Jun 25
0
[LLVMdev] [PATCH] Windows implementation of enable_execute_stack
...gt; > /* On Darwin, pagesize is always 4096 bytes */ >> > const uintptr_t pageSize = 4096; >> > @@ -54,6 +58,14 @@ >> > unsigned char* endPage = (unsigned >> char*)((p+TRAMPOLINE_SIZE+pageSize) & pageAlignMask); >> > size_t length = endPage - startPage; >> > (void) mprotect((void *)startPage, length, PROT_READ | PROT_WRITE | >> PROT_EXEC); >> > +#else >> >> Why not simply #elif defined(_WIN32) and skip the extra level of #ifs? >> > > There is an #if __APPLE__ for this part: > > #if __APPLE__...
2013 Jul 31
2
[LLVMdev] Error building compiler-rt
.../llvm/src/projects/compiler-rt/lib/enable_execute_stack.c /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:53:29: error: cast to 'unsigned char *' from smaller integer type 'unsigned int' [-Werror,-Wint-to-pointer-cast] unsigned char* startPage = (unsigned char*)(p & pageAlignMask); ^ /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:54:27: error: cast to 'unsigned char *' from smaller integer type 'unsigned int' [-Werror,-Wint-to-pointer-cast]...
2013 Aug 01
2
[LLVMdev] Error building compiler-rt
...cute_stack.c >> >> /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:53:29: >> error: cast to 'unsigned char *' from smaller integer type 'unsigned int' >> [-Werror,-Wint-to-pointer-cast] >> unsigned char* startPage = (unsigned char*)(p & pageAlignMask); >> > > Hm... Is it true that somewhy on your system (32-bit host, I presume), > sizeof(uintptr_t) != sizeof(unsigned char *) when you build code in 64-bit > mode (with -m64)? > > >> >> >> Thanks >> Pranav &gt...
2013 Aug 01
0
[LLVMdev] Error building compiler-rt
...er-rt/lib/enable_execute_stack.c > > /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:53:29: > error: cast to 'unsigned char *' from smaller integer type 'unsigned int' > [-Werror,-Wint-to-pointer-cast] > unsigned char* startPage = (unsigned char*)(p & pageAlignMask); > Hm... Is it true that somewhy on your system (32-bit host, I presume), sizeof(uintptr_t) != sizeof(unsigned char *) when you build code in 64-bit mode (with -m64)? > > > Thanks > Pranav > > > On Thu, Aug 1, 2013 at 7:27 AM, Ale...
2013 Jul 31
2
[LLVMdev] Error building compiler-rt
...e_execute_stack.c > > > /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:53:29: > error: cast to 'unsigned char *' from smaller integer type 'unsigned int' > > [-Werror,-Wint-to-pointer-cast] > > unsigned char* startPage = (unsigned char*)(p & pageAlignMask); > > ^ > > > /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:54:27: > error: cast to 'unsigned char *' from smaller integer type 'unsigned int' > &gt...
2013 Aug 01
0
[LLVMdev] Error building compiler-rt
...t;> > >> /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:53:29: >> error: cast to 'unsigned char *' from smaller integer type 'unsigned int' >> > [-Werror,-Wint-to-pointer-cast] >> > unsigned char* startPage = (unsigned char*)(p & pageAlignMask); >> > ^ >> > >> /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:54:27: >> error: cast to 'unsigned char *' from smaller integer type 'unsigned i...
2013 Jul 31
0
[LLVMdev] Error building compiler-rt
...cts/compiler-rt/lib/enable_execute_stack.c > /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:53:29: error: cast to 'unsigned char *' from smaller integer type 'unsigned int' > [-Werror,-Wint-to-pointer-cast] > unsigned char* startPage = (unsigned char*)(p & pageAlignMask); > ^ > /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:54:27: error: cast to 'unsigned char *' from smaller integer type 'unsigned int' > [-Werror,-Wint-to...
2013 Jul 31
0
[LLVMdev] Error building compiler-rt
...lvm/src/projects/compiler-rt/lib/enable_execute_stack.c /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:53:29:error: cast to 'unsigned char *' from smaller integer type 'unsigned int' [-Werror,-Wint-to-pointer-cast] unsigned char* startPage = (unsigned char*)(p & pageAlignMask); ^ /home/pranav/smack-project/llvm/src/projects/compiler-rt/lib/enable_execute_stack.c:54:27:error: cast to 'unsigned char *' from smaller integer type 'unsigned int' [-Werror,-Wint-to-pointer-cast...
2012 Aug 04
1
how to create a backup domain controller
Hello everyone, I am using samba4 as my Primary Domain Controller in my company. But I am concerned if my DC goes down due to some reason then is there any way I can create a Backup Domain Controller or Secondary Domain Controller which can be used at that moment of time so that all my users can login to their respected machines with all the policies. I don't want my organization's work
2006 Oct 22
0
[708] trunk/wxruby2/swig/classes/DC.i: Un-ignore get_multi_line_text_extent (Roy Sutton)
...p&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp2006-10-22 01:02:54 UTC (rev 708) </span><span class="lines">@@ -15,8 +15,6 @@ </span><span class="cx"> %ignore wxDC::EnableCache; </span><span class="cx"> %ignore wxDC::StartPage; </span><span class="cx"> </span><del>-%ignore GetMultiLineTextExtent; - </del><span class="cx"> // wxList version is now ''type-safe'' so we won''t be using that version instead </span><span class="cx&qu...
2007 Apr 28
0
[974] branches/wxruby2/wxwidgets_282/swig/classes/DC.i: Fix abstract method/ctor compile error on MSW
...ot;) wxDC </span><span class="cx"> </span><ins>+%ignore wxDC::wxDC(); + </ins><span class="cx"> // raises ''void value is not ignored as it should be'' compile error </span><span class="cx"> %ignore wxDC::StartPage; </span><span class="cx"> </span></span></pre> </div> </div> </body> </html>
2011 Apr 11
2
Fixme errors shdocvw and DocHostContainer_exec Exec failed
...xme:itss:ITSProtocolInfo_ParseUrl PARSE_CANONICALIZE fixme:itss:ITSProtocolInfo_ParseUrl PARSE_CANONICALIZE fixme:itss:ITSProtocolInfo_ParseUrl PARSE_CANONICALIZE fixme:mshtml:nsURI_GetAsciiHost Use Uri_PUNYCODE_IDN_HOST flag 0[149790]: file ms-its:C:\PROG~FBU\ROC-V\ROC-~MTA.3_2\data\ROCV~10L.CHM::/startpage.htm, line 17: ReferenceError: windowCheck is not defined fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented group {000214d0-0000-0000-c000-000000000046} fixme:shdocvw:PropertyNotifySink_OnChanged unimplemented dispid 1005 fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented group {000214d0-0000-000...
2002 May 24
0
gta3
...owExt fixme:win32:ELF_FindExportedFunction function SetWindowOrg not found: /usr/lib/wine/libwine.so: undefined symbol: SetWindowOrg fixme:win32:ELF_FindExportedFunction function StartDoc not found: /usr/lib/wine/libwine.so: undefined symbol: StartDoc fixme:win32:ELF_FindExportedFunction function StartPage not found: /usr/lib/wine/libwine.so: undefined symbol: StartPage fixme:win32:ELF_FindExportedFunction function StretchBlt not found: /usr/lib/wine/libwine.so: undefined symbol: StretchBlt fixme:win32:ELF_FindExportedFunction function StretchDIBits not found: /usr/lib/wine/libwine.so: undefined s...
2013 Jun 02
2
HELP: Ayuda URGENTE CON MODELO ARMA EN R y Autocorrelación.
> Cordial saludos a tod en s. > > Estoy leyendo un tema y tengo la siguiente necesidad. > > Los contacto para pedirles MUY ENCARECIDAMENTE ME AYUDEN con la > explicación DE CÓMO HACER EL MODELO ARMA en R DE UNA SEÑAL CUALQUIERA para > obtener de ella el modelo matemático fraccional aproximado, esto para > obtener el PSD de la señal (Power Density Spectrum). > > La