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

  • Users: wadey
  • Order by date
  1. wadey

    UIPermission problem

    Full trust. I have actually fixed it, by changing the trust levels through the .net 2.0 configurations settings in admin tools (control panel). Thanks for replying though.
  2. wadey

    UIPermission problem

    Help, trying to run an app in debug and getting this error:- Request for the permission of type 'System.Security.Permissions.UIPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. Made sure the enable clickonce checkbox is ticked in the security...
  3. wadey

    .Net and active x

    I don't know if this is the correct forum to post into but here goes:- We have a.net app that has an vb6 ax control on some of the forms. The customer has decided due to a change in their security policy that all the pc's will now have the local admin user removed. I've tested the app on a...
  4. wadey

    Trying to get ID from Selected Checkboxes on page

    Hi, Scenario:- I have a web page with a listing of items. besides each item is a checkbox. At the top of the page is a delete button. User selects his items to delete and presses delete button. Problem:- My codebehind should cycle through each control on page, if its a checkbox and its...
  5. wadey

    VB.net accessing Instant Messenger contacts

    Hi, I have a small project whereby i need to backup my contacts from Instant Messenger. I have no idea how in VB.Net i can interface into IM or any of the messaging apps (Yahoo etc), or find the contacts etc. Pointers please. Regards.
  6. wadey

    Debugging A Dll project.

    I seemed to have got it working now. I checked both projects were set to debug everywhere, removed the reference in proj A to proj B. Recomplied (err sorry rebuilt) proj B, then added the reference in Proj A. The question mark about missing symbols etc is still there when i first run it, but it...
  7. wadey

    Debugging A Dll project.

    Yes, both projects are under the same solution. I did remove the reference from project A, and re-added it pointing to project B instead of the actual Dll in the bin directory. When i run it, the breakpoint in project B has a ? and a tooltip text stating it will miss becuase of no symbols etc...
  8. wadey

    Debugging A Dll project.

    Hi, I have a solution containing 2 projects. 1 is a dll project. When stepping through project A (exe) into project B (dll) public property's no problem. However trying to put a break point in project B's functions It says that the breakpoint will not be hit because of no symbols etc. I have...
  9. wadey

    Vb.Net newbie question. Help required

    err. ignore my original post, infact march me outside and slap me about the head with a wet kipper..... It would help me finish my changes and my debugging would work if:- a) I had made the changes to the right form b) I put the breakpoints on the code in the right form !! Doh! Rightclick...
  10. wadey

    Vb.Net newbie question. Help required

    Hi, Just started to makes some changes to a project in VB.Net 2003. Help required - I cannot get the thing to hit my breakpoint, just seems to ignore it. And any changes i've made including screen changes don't seem to have worked. I've removed buttons/panels etc, yet when i run they are still...
  11. wadey

    Vb.Net newbie question. Dll help required

    Hi, I've just started on a new peice of work in VB.Net 2003. I've been given all the source code (have updates to do) but cannot run the app because of missing references. I have the Dll's in question, but cannot reference them using the add reference menu. I browse to the dll's select them and...
  12. wadey

    What on earth does this mean..................

    Unique Table is nonexistant or not completely specified" Using a bound DB Grid in vb6. get this when emptying grid etc. Help
  13. wadey

    VB Forms and Hwind. please help

    Hi, I'm trying to set a reference to a loaded form using the hwind property. example:- dim objForm as form set objForm = <----another form of which i have the hwind, but do not know the code. Anyone Regards
  14. wadey

    VB6 and Xpath. Trouble getting value back

    xml is this:- <FORM name="PolicySelect" enabled="true"> <COMMAND name="cmdUpload" enabled="true"/> </FORM> VB is this:- 'objControl is passed in and currently is a command button with the name of cmdUpload. strControlName = objControl.Name 'get xml node for control Set objNode =...
  15. wadey

    Properties collection of a Controls collection. Help

    I'm trying to retrieve the properties collection of a control collection, and my code is giving me the "object doesnt support this property or method" error. Anyone know why ? Dim objForm as Form Dim objControl As Control Dim objProperties As Property For Each objControl...
  16. wadey

    ADO, SQL SVR, windows 2003 R1 and R2

    running this code against release 1 produces the following error:- frm.AdodcTemp.RecordSet.Update frm.AdodcTemp.Refresh error:- Row cannot be located for updating. Some values may have been changed since it was last read.
  17. wadey

    ADO, SQL SVR, windows 2003 R1 and R2

    Has anyone come across the following bug before:- we have 2 servers, one running Windows 2003 release 1, and the other running Windows 2003 release 2. Using VB6 and ADO to connect to SQL Server 2000. This VB code only works on Release 1:- frm.AdodcTemp.Refresh frm.AdodcTemp.RecordSet.Update...
  18. wadey

    Why does VB add a # on the end?

    why does VB add # on to the end of this line? :- dim lngVar as long lngVar = 999999999999999# Please do not tell me the number is to big for a long, because I already know this. I'm merely just curious what the # does in this situation
  19. wadey

    How do I recompile an OCX?

    You also need to find out if you need to keep binary compatability (if you haven't already broken any interfaces) and read up on that as well.
  20. wadey

    Virtual recordset, then update DB table

    Thanks, but in your code where do you specify which table to update?

Part and Inventory Search

Back
Top