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 SkipVought 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. jerryk

    how to display a eula in my setup.exe

    Hi All, I've made a little VB app in Visual Studio 2005. I've used the 'publish' utility to make a cd-based setup.exe. I can't find an option to pop-up my License Agreement and have the user check "agree". Does Visual Studio support this, or do I need to go with a 3rd party like...
  2. jerryk

    What actions require application set refresh?

    You are correct. It worked. Thanks!
  3. jerryk

    What actions require application set refresh?

    Hi All, I have (I think) a pretty standard published application, and the users click desktop shortcuts created by the Program Neighborhood. On the server in the CMC, the "location" has a command line like this: n:\apps\some_app.exe -parm1 -parm2 -parm3 My question is, if I merely add...
  4. jerryk

    %username% etc unknown in ica desktop...works in rdp

    Additional Info: I right-clicked my computer -> manage -> environment variables and NEITHER login explicitly assigns the %username% variable. Things like %tmp% etc that are in the above dialog DO work in both environments.
  5. jerryk

    %username% etc unknown in ica desktop...works in rdp

    Hello All, On a published desktop, I have shortcuts that point to n:\users\%username%\appdir If I connect via RDP the shortcuts work. If I connect via ICA they don't. So I tested it a bit. From a cmd prompt in ICA, "echo %username%" ...yeilds... %username%...it isn't resolving the...
  6. jerryk

    How to convert multi-exe program to single (MDI?) app

    Thanks. I was afraid of that...but thought there might be some gimmicks out there that might speed the process. -j
  7. jerryk

    How to convert multi-exe program to single (MDI?) app

    Hi, I have a friend who's a self-taught vb6 programmer, and he's made an app with about 30 screens (forms), each of which compile into separate .exe files. My problem is I want to publish it via Citrix, and the multi exe thing isn't working unless I publish an entire desktop. Is there a...
  8. jerryk

    deleted route keeps coming back...why?

    All, I forgot to follow up on this.... The advice from ogneimi: # chdev -l inet0 -a delroute="net,-hopcount,0,,0,10.0.3.242" did the trick. Thanks!
  9. jerryk

    deleted route keeps coming back...why?

    Hello, I've begun using an AIX box that had 2 default gateways. One of them (.242 below) is a router that has been gone for a year. A week ago I deleted (with "route delete") the pointless gateway, but now it's back! Route Tree for Protocol Family 2 (Internet): default 10.0.3.242...
  10. jerryk

    Enforcing numeric chars in textbox widget.

    Thanks for all your help. Once I knew the proper keywords: keypress etc, I was able to find similar threads. Thanks again, Jerry
  11. jerryk

    Enforcing numeric chars in textbox widget.

    Thanks, I was kinda close with: Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii < 48 Or KeyAscii > 57 Then KeyAscii = 0 End If End Sub Your code helps a lot!!!
  12. jerryk

    Enforcing numeric chars in textbox widget.

    Hi, I'm an old programmer, new to VB. I have a TextBox but want the user to only enter integers (I suppose decimals are ok) I've set the datatype to integer, but the Change() event crashes at runtime giving me "type mismatch" errors when I enter a-z characters. Is there any way to make the...
  13. jerryk

    can't print to pdf file

    We have adobe acrobat 6 on our Citrix server. I can open a pdf file and it displays fine. What I cannot do is create pdf files by printing to the "adobe pdf" printer that has been created. I thought this might be a permissions issue, but I'm logged in as administrator. I get the same error...
  14. jerryk

    Framesets vs Template design?

    Hello, I've done a little work with Ultradev and my company has asked me to "review" their website, for upgrading options. It has been designed with framesets, and .htm files defining the left buttonbar, top frame and then pulling in the "main" text frames for content. Pretty standard design...
  15. jerryk

    Publishing/Deploying shared folders?

    Thanks, I am new to Citrix but I did understand that completely when I decided to publish explorer. Being remote, the IE option does have drag/drop caveats, but since the contents are all word/excel and because the remote office apps run just fine when the files are selected, I have a...
  16. jerryk

    Publishing/Deploying shared folders?

    Mission Accomplished. I've deployed an .ica file that launches iexplore.exe on the shared folder. Amazingly, clicking on a word doc inside the folder pops up the server's msword in a new window. very cool. iexplore.exe -e launches in "windows explorer mode" and shows my folder. The only...
  17. jerryk

    Publishing/Deploying shared folders?

    hmmm....not so sure about the DFS option... looks like it's relying on AD, which would imply a client domain login. My clients are pc's from potentially anywhere with merely a broadband internet connection. Alas, rerhaps vpn is the only way to deploy file shares remotely.
  18. jerryk

    Publishing/Deploying shared folders?

    Thanks Patrick, Great information. I'm studying up on DFS now, and will setup a couple of test shares using it. One question, My server is behind a firewall. Does DFS require me to open a particular port so remote clients can see the data? Thanks again, Jerry
  19. jerryk

    Publishing/Deploying shared folders?

    Yes, and I think I just resolved the problem. When the app opens, and I do a "file open" in the published app's menu, I can see the "U:" drive I'm trying to use. The problem is, I was hoping that the Citrix session would map the drive on the actual client PC, e.g. The pc gets a mapped drive...
  20. jerryk

    Publishing/Deploying shared folders?

    Thanks for your reply. These shares are simply a company "shared folder". It contains word docs etc. I'd like them to access whenever the citrix app is open....via the app directly or on the client pc's list of mapped drives. Interestingly I just modified usrlogon.cmd and it didn't work. I...

Part and Inventory Search

Back
Top