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 dencom 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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.
  5. 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...
  6. 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...
  7. 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...
  8. 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
  9. 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
  10. 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 =...
  11. 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...
  12. 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...
  13. 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
  14. wadey

    Virtual recordset, then update DB table

    i have a virtual ADO recordset. After populating it I then wan't to throw a table name in a db at it, and have it write to the table without cycling through the records or using SQL to update or insert. I know this is possible, but don't know how. Here's the code so far. what do i need to add...
  15. wadey

    using a dictionary object to hold INSERT data. problem

    I'm using a dictionary object to hold data that needs to be inserted into a sql server 2000 db. problem is i'm getting the error "The microsoft jet database engine could not find the object". The name of the table is spelt correctly. I've got a feeling that the problem lies somewhere in the...
  16. wadey

    Using CAST causes following error. can't find out why:-

    Server: Msg 291, Level 16, State 1, Line 1 CAST or CONVERT: invalid attributes specified for type 'smallmoney' SQL:- INSERT INTO [New_Data] VALUES('Some Data','1','12345','DMS','data','','10/07/2006',CAST('100' as smallmoney(4)),CAST('0' as smallmoney(4)),CAST('0' as...
  17. wadey

    Getting the recordcount using ADO with Excel.

    Hi, The following code returns a recordcount of -1 for a spreadsheet that contains 198 rows. the version of XL is 2000. What is wrong? :- the dlgUpload is a commondialog control. Public Excel_Connection As ADODB.Connection Public Excel_RecordSet As ADODB.RecordSet Public Excel_SQL As String...
  18. wadey

    Keypress event only works in debug. Help

    this code only works when stepping through. Otherwise it allows me to type anything in the text box. why and how do i fix? :- Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode < 46 Or KeyCode > 58 Then KeyCode = 0 End If End Sub
  19. wadey

    Regular Expression taking a long time if string is over 30 chars.

    My regular expression is hanging for 5 extra seconds per character for each character that is added to the string, when the string exceeds 30 characters in length. The regular expression checks for correct email addresses. the following example has 33 chars and hangs for about 20 seconds. Try...
  20. wadey

    Sharing and unsharing.

    Help. 2 projects set up in VSS. Project A and Project B. I dragged all the source from proj A into proj B. I then took a couple of files from Proj B and branched them. After finishing working on these 2 branched files decided to merge them back in. Done that. Now why doesn't the merged files...

Part and Inventory Search

Back
Top