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 Mike Lewis 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. msstrang

    Saving Excel and File Security

    Hello All, I've been working on this issue for 2 days now and can not come up with a good solution, please someone point me in the right direction... When using VB6 to save an excel file the creator of that file has ownership of the created file. This allows for the creator of the file to...
  2. msstrang

    Only allow entry of text matching a format

    Hello, I have spreadsheet where I want one column of data to only allow any user to input a value in the following format: CCV-L-010-01 for example. The numbers can change and the L can be a U sometimes. Is there a way to do this without using macros?
  3. msstrang

    GUI Winsock Server

    You're right, that tutorial really got me going in correct direction - now i'm going to have to figure our the callback so I can add items to my listbox so the user knows what is happening. I hate to ask since you've been so much help already, but can you point me in the direction of a good...
  4. msstrang

    GUI Winsock Server

    What you are saying is defintly a good help - thank you. I've looked around and tried some of the threading sources I find - but can't get any to compile ( a common issue when I try something for the first time:)) Just to make sure I'm not spinning my wheels - I am running vc 2005 EXPRESS...
  5. msstrang

    GUI Winsock Server

    I hope someone might be able to lead me in the right direction. I currently have a winsock server application that I've written - it works fine as a console application. My problem is I want it to be a Windows Forms application. When the server application goes into listen mode waiting for a...
  6. msstrang

    Form Goes Blank

    i think i follow some of what you are saying. i figured out the part of my program that is causing the issue. its winsocket server application - so when the code reaches "SOCKET accept (...);" it basically waits until another comptutuer connects into the assigned open socket. This doesn't...
  7. msstrang

    Form Goes Blank

    Hi Everybody, I'm trying to figure out a silly little issue I've got going on here. I've written a windows form project using VS c++ 2005 Express. I have it set up so when the user presses the "connect" button the code jumps to another module I currently have that opens a winsocket port and...
  8. msstrang

    Remote Access

    Hey all, Currently I've got a c++ application that I've written that allows a remote client to request and receive a file from a workstation in our office via winsocket2. However, when requesting the file the client must type the path exactly, ie: "C:\Filename.txt". I want to make this much...
  9. msstrang

    Excel 2003 Macro Writing Help Needed

    Modify the below code: Range("a1").Copy Set ExcelLastCell = ActiveSheet.Cells.SpecialCells(xlLastCell) ' Determine the last row with data in it LRWD = ExcelLastCell.Row 'replace the number in bold below with the column number your data is in. Cells(LRWD + 1, 1).Select ActiveSheet.Paste if...
  10. msstrang

    Close w/o Saving - LAN issue

    this should fix your problem...don't know the cause, different excel versions maybe... [code] Application.Workbooks("excutive.xls").Close SaveChanges:=False Application.Workbooks("cfs.xls").Close SaveChanges:=False Application.Workbooks("standard.xls").Close SaveChanges:=False...
  11. msstrang

    username / password on existing network

    thanks for all the help guys.. now i'm looking for a convenient time to implement these steps. i have 16 people here in the office connected to this router. will the down time only consist of the time break mode is entered until the "router#wr" command?
  12. msstrang

    drop down list won't stay "drop downed"

    sure, it's www.xfmrs.com. don't let it fool you. sometimes the issue will not present itself until after an item has been selected from the list, once the user returns to the list to try and select another item the issue will happen..
  13. msstrang

    drop down list won't stay "drop downed"

    Hey, Just noticed something fishy, looks like an IE7 issue because I don't see it on my other workstations that run earlier versions of IE. My website has a drop down list, but when you try to select an item in the list using the mouse it "undrops". I can use the up/down keys to select the item...
  14. msstrang

    username / password on existing network

    Hey, one more thing... CiscoGuy33 & and a couple of other pages on the internet show that after exiting (config) mode that I need to enter the "copy run start" to copy to RAM, but it's not mentioned in Burts post... router(config)#exit ?router# copy run start? router#wr
  15. msstrang

    username / password on existing network

    First off, much thanks burtsbees & ciscoguy33 & brianinms, this looks like some good information. If I follow the steps that burtsbees lays out, will I have to worry about ciscoguy33's warning about needing "to go to each interface and do a "no shut" to bring them all back up"? If so can anyone...
  16. msstrang

    username / password on existing network

    Hey All, I'm an electrical engineer posing as a network engineer at the moment... i've inhereted an existing network that uses a cisco 1721 router. i'm working on a much larger scope project, but before i can proceed i need to access the CLI. i can connect to it using hyperterminal no problem...
  17. msstrang

    EMBEDDED FLASH

    Hey, I usually use Tek-Tips for VB, C++, etc. However, I'm trying to add a flash object to a webpage for my companies website. I have no problem embedding the .swf. My problem is that although my side bar has no issues with the page header, my flash object does not "go under" the header like...
  18. msstrang

    setup and

    In express you can't add ".proj", only ".vbproj", which sharp develop does not saveas. I did figure out how to deploy without having to buy the full price Visual Studio. It's only a bit complicated, the steps are as follows: 1. USING MICROSOFT VISUAL STUDIO EXPRESS DEPLOY YOUR MAIN PROJECT BY...
  19. msstrang

    setup and

    no, but i found a way to create a setup project using sharpdevelop IDE. now that i've created a setup project (in theory it works, i built it)i'm a little confused on how to get this setup project to load my existing project? any advise?
  20. msstrang

    setup and

    that's what i thought. i thought maybe there would be a resource to download these templates somewhere out there? does anyone know of such a resource?

Part and Inventory Search

Back
Top