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: therick
  • Content: Threads
  • Order by date
  1. therick

    ASP Proxy

    I have to circumvent a DMZ for a customer who does not wish to allow our app server to sit in their DMZ. Affectively, I have an ActiveX client that needs to tunnel through IIS via an ASP page that will proxy the data to a server located in another DMZ. I am having a little trouble...
  2. therick

    How to add Caption to taskbar but keep from displaying on top of form?

    I have shaped form and don't want to show the caption at the top when form is visible. However, I do want to show the name of the app in the taskbar. I have not found a way to remove the caption from the form and still have text beside the icon in the taskbar. Has anyone come across this...
  3. therick

    How to hide a popup menu?

    I am using TrackPopupMenu() to pull up my menu which works great. The only problem is if the user doesn't select a menuitem and wants to hide the menu, he can't. One can L or R click somewhere else and the darn menu hangs around. How do I send a message to my app to hide the menu? I am...
  4. therick

    Netscape Plug-in SDK

    Has anyone ever had to write a Netscape Plug-in? I fully understand the architecture and have perused the limited literature quite extensively, but have yet to successfully compile any of the examples from the SDK to this point. I have been charged w/ writing a plug-in for distribution of an...
  5. therick

    Migrate Lotus Rooms and Reservations

    Is there a tool out there, free or pay, that would allow me to migrate data and set proper ownership from Lotus Notes' Rooms and Reservations plug-in to Exchange 2k? Essentially, we have a fully migrated 2k environment but are still using Notes to book rooms and resources then inviting people...
  6. therick

    Potential problems? Migrating apps from 5.5 to 2k?

    Could someone please advise me as to the potential problems that might arise from migrating Outlook forms (and potentially other apps built for 5.5) to Exchange 2k? I understand that permissions might have to be changed for users to install the apps on Exchange 2k. I also understand that any...
  7. therick

    Exceeding size limit of field on webform?

    I am passing anywhere from 200 to 700 k of xml to a single field of a web form and have exceeded the limit (which I hear is 150k). Basically I'm just passing the xml as such... strXML = Request.Form("Post_Accept") without taking chunks at a time or looping through or anything...
  8. therick

    Reading a textbox and displaying input via XML

    I have a several textboxs in my vb.net windows form class called txtProjectID, txtDescription, txtSeverity and txtPriority. I would like to take the data the user puts in these boxs and write the results out via xml.. how would i go about doing so.
  9. therick

    Open an exe for Binary Access?

    I need to create a config tool that consists of a simple form w/ a text box for updating an ip string hard coded and compiled into an exe. This IP changes a lot and I don't want to recompile everytime the IP needs to be changed. I can do this myself w/ a hex editor but would rather the client...
  10. therick

    Using Winsock control

    Essentially need to create web server using winsock from VB then Listen for a request...process the text of the request and return a very simple web page. I have the winsock control added and can view the methods so I have pretty good idea, just never created a non IIS web server so a little...
  11. therick

    Any tools out there that convert Access forms to ASP / web front-ends?

    I have a simple access form that I'd like to convert to ASP for web based use. I have heard talk that this is a possibility but don't know of any tools that do this and couldn't find anything packaged with Access. Anyone know anything about this? Probably easier just to create the asp from...
  12. therick

    Create Excel Chart from On-Click event in Access?

    I need the ability to create an excel chart (bar graph and pie chart) from an Access form. Any help in the right direction would be great. I assume I creat a new Excel object and pass data parameters to it but have yet to find any example code or get intellisense to work in VB. Any help here...
  13. therick

    XML to SQL....XPATH issue....

    I have the following xml string and am trying to convert to sql. - <report> - <processlist> - <process> <imagename>smss.exe</imagename> <pid>160</pid> <path>\SystemRoot\System32\</path> <ports /> - <dlllist> <dll>dll1.exe</dll> <dll>ntdll.dll</dll> <dll>dll3.dll</dll>...
  14. therick

    OpenXML ?

    I have the following xml string and am trying to convert to sql. - <report> - <processlist> - <process> <imagename>smss.exe</imagename> <pid>160</pid> <path>\SystemRoot\System32\</path> <ports /> - <dlllist> <dll>dll1.exe</dll> <dll>ntdll.dll</dll> <dll>dll3.dll</dll>...
  15. therick

    How to set an application variable?

    I have a series of asp pages that I need to secure. I have a login page that authenticates to a SQL table with usernames and passwords. Upon validation to SQL, the user is redirected to a page to post a string of data. Problem is, as you probably expected, you can skip the login screen and go...
  16. therick

    How to use Textstream object?

    I need to pass a string from an asp form to a variable and write it to a new file. I cannot get intellisense to pull up the .write method. Please tell me what I'm doing wrong here as I know this is easy and have done in VB hundred times. Also, how do I add a wildcard/unique identifier w/ date...
  17. therick

    Vector member of a class?

    Having trouble using vector as a member of a class? Here's the code I'm using and it gives a &quot;syntax error 'constant'&quot; error on build. Possibly #include order problem or what i'm #including or definition of vector or that's it's a member of the class? I can't figure this out...
  18. therick

    How to prevent user from stopping program w/ Ctrl-C or Ctrl-Break

    I need to figure out a way to prevent a user from stopping my program before it finishes execution. In other words, I need to recognize a KeyPress event and handle it during runtime so that the executable will not stop. Any suggestions?

Part and Inventory Search

Back
Top