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

    Test Plan Software

    Does anyone out there know of any software (preferrably web based) that is specifically designed to aid in the testing phase of Software Development? We are looking for an off the shelf package to use to create our test plans etc. Transcend [gorgeous]
  2. Transcend

    ShellExecute URL string

    Hi everyone I have a form that builds a URL string and then opens it in internet explorer. However if I leave the window open, then build another URL and execute it, I want it to open in a new instance of IE, but it opens in the same window. The command i am using is this: Dim i As Integer...
  3. Transcend

    How do i add an event to a control created at runtime?

    Hi guys if i create a control at runtime, like so Set optButtons = Controls.Add"VB.OptionButton",name) is it possible to write code to capture events, like click events? Transcend [gorgeous]
  4. Transcend

    Need to read xml from the database.

    Hi guys, i'm fairly stuck on this one! I've been looking at MSXML2 in vb 6 to try and solve this one but haven't gotten very far so far! Basically I am reading a recordset in from the database, and one of the fields is long text, that looks something like this: <Parameters> <Parameter>...
  5. Transcend

    Line graph problems

    Hi everyone I have a crystal report (vsn 8) that consists of a line graph. The report is based off an access table. I recently added a new field to this table (of type integer), and added this field as a line on the graph. This all worked fine until I realised I actually needed to use a...
  6. Transcend

    Delete where not in top 16000.

    Hi everyone I need some help with a delete query. Basically one of our applications uses an access database to run its reports off. The database is only a temporary one that gets populated on the fly. I'm looking to be able to run a query like delete from table where tablerow not in (select...
  7. Transcend

    Empty array question

    Hi everyone I've written a function that will return an array of strings. My code is like so: Dim sList() As String sList = ReturnStrings() However if no strings are returned i'm left with an empty array. I did a search on here to test for an empty array, but the only...
  8. Transcend

    CommandTimeout - no effect?

    Hi everyone I'm a bit confused about the timeout on an ADO command object. I have some code that is opening a recordset. I'm setting the command object timeout to 15 seconds, and using a query that I know takes at least 4 minutes to run in query analyser. The thing is when i run the code it...
  9. Transcend

    Select Top 1 timeout

    Hi guys I've been left to fix up a heap of problems with an application i'm not familiar with. One problem is that i keep getting a timeout when i'm trying to perform a delete function in the application. The reason its timing out though is because before it performs the delete it does...
  10. Transcend

    Report.export - access denied - need to continue

    Hi all I have a vb6 exe that runs in the background as a service. It is supposed to run scheduled reports. However when it tries to export a report to a location it doesn't have access to it just crashes with 'access denied'. It doesn't enter the error handler or anything. If this occurs i...
  11. Transcend

    Form resixe issue

    Hi everyone I have an issue with a form when it is resized. It has an SSResizer control on it which takes care of resizing the controls when the form is resized. However with one particular form, when i resize it a bit, then maximise it, the font on the tabs of my SSTab control goes all...
  12. Transcend

    Fatal error using zorder?

    Hi everyone I have a shortcut key on a form that basically hides and shows a utility panel. However sometimes (usually at the 2nd or third hide) it causes a fatal error and the program just crashes entirely. When i debug it it happens when setting a controls zorder, and gives a "memory could...
  13. Transcend

    Help formatting date in a grid, region dependant?

    Hi everyone I have come across a situation in an application where the date format in a grid is not consistant. What i mean is that they are displaying like so 17/09/2003 11:53:23 AM 17/09/2003 9:34:30 AM 17/09/2003 11:53:22 AM 9/09/2003 11:55:08 AM i.e. the leading zero's on the day and on...
  14. Transcend

    integer validation

    Hi this may seem like a silly question but what is the best way to validate that a text box has had an integer entered so as to avoid a data overflow bug. I'm validating that its a number but if a ridiculously long number is entered the overflow occurs. It seems messy to test for...
  15. Transcend

    Treeview font - how to change ??

    Hi everyone I'm using the treeview from the ie webcontrols. I want to change the font on the treeview to match the rest of the site but nothing seems to work! I found one post on this site that said to do something like defaultstyle=&quot;font-family:Verdana,Helvetica; but i can't seem to...
  16. Transcend

    answer to interview question

    Hi guys I was given this as an example interview question and was wondering if someone could help me out. &quot;Let's say I have an existing vb 6 application that utilizes windows 2000 com+ transaction services. How would approach migrating this application to .Net.&quot; Now I don't know a...
  17. Transcend

    Write a recursive binary search function for an array.

    Hi there Can anyone help me with writing a recursive binary search function for an array. For example i have an array populated with integers that is already sorted. I want to write a find() function that will take a number as well as the array and return the true if the integer is in the...
  18. Transcend

    Pure interest question - Find method on sorted array

    Hi guys, I'm asking this question purely for interest as I saw this question a while ago and started thinking about it. If you have a sorted array, how would you write a Find() method that is efficient in processor usage that finds an integer in that array. Any takers? Transcend [gorgeous]
  19. Transcend

    Treeview no longer working

    I recently converted a .net application to .net 2003 and I'm having all sorts of problems getting it to work again! For a start the treeview no longer seems to want to work properly. The treeview control is on the toolbox but it is disabled? Any ideas?? Thanks in advance Transcend [gorgeous]
  20. Transcend

    Write out a href with javascript when a page loads - is it possible?

    Hi guys - the problem I have is this, when a certain page in my asp .net application loads, different things need to happen depending on who is logged in, what they are looking at etc etc. In some instances on the page I write out a html table on the fly which works fine. Two of the columns...

Part and Inventory Search

Back
Top