Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. diaglez

    Convert char* eg. "0x1A" to char* 0x1A (hexadecimal)

    thx a lot xwb and cpjust. Finally cpjust's solution did the trick. :)
  2. diaglez

    Convert char* eg. "0x1A" to char* 0x1A (hexadecimal)

    Hi, I have the following: char myvar[4] = "0x3B" unsigned char mac[6]; mac[0] = 0x1A; mac[1] = 0x22; .... the question is how can I do this new assignment: mac[2] = content of myvar[4]; but it has to be stored it in the same format that mac[1] = 0x1A (hexadecimal) thx.
  3. diaglez

    Iexplorer 7 and blocking *.msn.com + exceptions

    Thanks InfrArch, but what about the second possibility? Where can I find in the pc the registry value or archive, which indicates that the user has visited that page with internet explorer 7? thx
  4. diaglez

    is iexplorer 7 installed on remote machines in a domain?

    Hi,how can I know if internet explorer 7 is installed on a remote machine in a domain? Client PCs are Windows XP. Thanks
  5. diaglez

    Iexplorer 7 and blocking *.msn.com + exceptions

    Hi, the first time a user start session in a pc after installing Internet Explorer 7 it tries to reach http://runonce.msn.com even if it has defined other homepage(e.g. http://intranet) ISA Server is configured to block access to *.msn.com and I don´t know how to add an exception to this rule...
  6. diaglez

    choose logon server

    Hi, i wonder to know if it's possible to configure a WinXP to logon in an specific domain controller. I have a w2003 domain with several DC(in different subnets) and i want computers in subnet 1 to logon at the server in subnet 1, computers in subnet 2 logon at the dc in subnet 2, and so on...
  7. diaglez

    Desktop Popup Menu Values in the Registry

    I tried with ShellExView but i couldn't find anything related to desktop.
  8. diaglez

    Desktop Popup Menu Values in the Registry

    I mean the popup menu that appears when you right-click over the desktop. I need to know how to delete some items that appears in that menu, and I have to do it in several PCs
  9. diaglez

    Desktop Popup Menu Values in the Registry

    Hi, does anyone how to hide (or show) one of the elements showed at the desktop popup menu maybe you can specify that values in the registry? thanks
  10. diaglez

    XP very slow when opening files form network..

    do you have a dns server in your lan? if so, check the dns server ip at your pc
  11. diaglez

    Printing Quality using PrintUI.dll

    Hi!, does anyone knows if is there any way to set the printing quality (to the lower) using PrintUI.dll? If it can´t be done using PrintUI.dll is ther any way to do it from the DOS console in Windows XP? The idea is to set printing quality in several PCs in a LAN without user intervention...
  12. diaglez

    Add/Remove programs from Command Line

    Hi, I wonder to know how to uninstall a program from command line. The progam appears in Add/Remove Programs console, but I need to do the uninstallation from command line and it has not an uninstall.exe thx
  13. diaglez

    Showing win98 computers in Active Directory

    Hi, is there any way to get Win98 computers shown in Active Directory?
  14. diaglez

    ISA client configuration using Group Policies

    Hi all, I wonder to know if is there any way to config the ISA client in my LAN PCs using Group Policy (win 2003). All the PCs has the ISA client already installed, but I want to change the ISA server they use from ISA_Server_1 to ISA_Server_2 Thx
  15. diaglez

    Casting char * to string?

    Hi, I'm having casting problems with this code while trying to use argv[1] and argv[2] this is the code: -------inicio-------- int main(int argc, char *argv[]) { system("rundll32 printui.dll,PrintUIEntry /in /c\\\\" + argv[1] + "/n\\\\" + argv[2]); } ---------fin--------- any idea? Thanks
  16. diaglez

    Why RunAs doesn't work with %windir%\system32\control.exe

    Hi, I have a problem while trying o execute the Control Panel form command line using RunAs: runas /noprofile /user:%COMPUTERNAME%\administrador %windir%\system32\control.exe Everething seems ok but the Control Panel window doesn`t open. Looking in the process list I see that the process...
  17. diaglez

    fill a new table with data acquired using a SELECT statement

    I already done it but I got this error message: ------------ Msg 8152, Level 16, State 13, Line 1 String or binary data would be truncated. The statement has been terminated. ------------ Thanks a lot
  18. diaglez

    fill a new table with data acquired using a SELECT statement

    Hi, I need to fill a new table with data acquired using a SELECT statement e.g. MS SQL SERVER 1** I create the table: --------inicio-------- Create Table TACCESOS2 ( CODIGO INT, NOMBRE NVARCHAR(20), FECHA NVARCHAR(20), HORA NVARCHAR(20), TERMINAL SMALLINT ); ---------fin----------...

Part and Inventory Search

Back
Top