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 bkrike 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: *

  • Users: nerram
  • Content: Threads
  • Order by date
  1. nerram

    Disconnect drives based on the server they are mapped to

    Hi, I was wondering is there anyway to delete all drives mapped to a server. e.g see below drive server f:\ \\server1\share1 g:\ \\server1\share2 h:\ \\server2\share1 j:\ \\server2\share2 k:\ \\server1\share3 In this scenario I would like to...
  2. nerram

    dll's general question

    I have got a dll that someone else wrote. I need to use it. I was told it has COM Registration stuff. What are the implications with importing this dll into VC++? Plus I have released that my English isnt very concise and accurate when talking about dlls. Do you import a dll or link it or...
  3. nerram

    Location to the script?

    How do I find the location to a script? EG My Script is stored at c:\Projects\Scripts\MyScript.vbs I want the script to output its location ie c:\Projects\Scripts\MyScript.vbs But if it was stored at d:\MyScript.vbs it should output d:\MyScript.vbs
  4. nerram

    Run a .reg file

    I need a Vbscript to run a .reg file silently but am having great difficulty in doing. Will I have to parse in the whole file. Any ideas?
  5. nerram

    The following is the contents of a

    The following is the contents of a text file I wish to read: P$öóŦ :mk ¨=EdQ°Ïºü­z³ÔqSM,Ý ‹RŒÇý${” It is the output of an encrpyion process. I am trying to read the first line into var1 and the second line into var2. When I try to read the file it only reads the first three characters. I...
  6. nerram

    VBScript Editor

    Hi, I am looking for a VBScript editor. One with autocomplete functionality ie when you type MyObject. a list of member functions etc are displayed.
  7. nerram

    Embedded Password

    I am writing code that needs to access a password protected network resource. I was wondering would it be safe to embed the password in the code? Would it be hard to deduce the password from the exe. I know that the code has to be recompiled if the password is changed, but that is not a problem.
  8. nerram

    #include <windows.h> #include <std

    #include <windows.h> #include <stdio.h> #define USERID &quot;Userid&quot; #define PASSWORD &quot;Password&quot; #define REMOTERESOURCE &quot;\\My Network\\share&quot; #define LOCALDRIVE &quot;&quot; int main() { NETRESOURCE nr; DWORD ret; // Initialize NETRESOURCE structure nr.dwType =...
  9. nerram

    Network Logon

    I want to log onto a network from within my code, do some file moving and log out again. A username and password will be created for the program but these must be kept secure. Where would I start researching how do to this? Any pointers would be appreciated.
  10. nerram

    trouble with dll

    I have an program that I wrote that is looking for dlls eg mfc42d.dll when I bring the program onto a different machine. How can I give the program this dll Can I download it from somewhere or include it in the exe somehow. I would prefer if my program was more portable ie shipped the dlls...
  11. nerram

    I downloaded a bit of code from: h

    I downloaded a bit of code from: http://www.codeproject.com/shell/cshellfileop.asp?print=true This works fine but I want to be able to disable the cancel button on the progress dialog. How could I do this? The code I use is : int CFolderToolDlg::CopyFolders(char *szSourceFolderPath, char...
  12. nerram

    Display an int

    Simple question. How do you display an int. int MyInt=5; CDialog::MessageBox(MyInt);
  13. nerram

    I want to learn UNIX?

    At the moment I have a Windows 98 Operating system on my PC. I want to learn the basics of a UNIX rapidly and keep my PC with Windows 98 as I have alot of windows based files word,excel etc. Do I have to get rid of win98? Can I get a simple version of UNIX to figure out pipes etc? Any good...
  14. nerram

    httpsession

    Where is the session information stored if cookies are disabled?
  15. nerram

    Applets and Databases

    I read somewhere that and applet can only make a connection with a the server that issues it. Does this mean it can only connect to a database on the servers machine or does it mean it cannot connect to a database at all. Any help clearing up the whole world or applets+databases+servers would be...
  16. nerram

    What is a war file?

    How to do you create one? What purpose to they serve? How do you use them? etc
  17. nerram

    Get properties of a table?

    How do i get the properties of a table via sql. That is if i had create a table with Create Table(field VARCHAR(10), .. how can i retrieve this property later it later?
  18. nerram

    reload after OnClick

    i want to go back using the history two pages and reload that page when i get there so that its jsp content will be refreshed. Can this be done in javascript?
  19. nerram

    Select Statement

    Example Table: Username Status StatusB ------------------------------- joe O kevin O V peter R V mary O Fred R I want to select all usernames where the status is equal to O and Status B is not equal to V. I bit confuse with...
  20. nerram

    Multiply fields

    i was wondering in odbc:jdbc queries can you multiple two field values and total them at the end of a column. X Y Tot 1 2 2 2 4 8 3 5 15 25

Part and Inventory Search

Back
Top