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

    sony vaio: a bit dissapointed

    Hello all, I have bought myself a sony vaio in june 2010 and I am quite dissapointed. The battery seamed to discharge when the laptop was off, checked with sony and there was nothing they can do, it is a known issue and they don't fix it. 2 persons in my environment had exactly the same...
  2. VBmim

    table variable & optimize for unknown

    Hello, In my application, I have a query which takes a large number of items in a 'in' clause: select [columns] from [table] where [table].[id] in (1,2,3,4,.........,1000). These queries are run through a .net application which uses ado and a native sql connection. The number of items in...
  3. VBmim

    sql server profiler: track isolation level from queries

    Hello, I am trying to trace the isolation level used for my queries in the sql server profiler. Is this even possible? Kind greetings, VBMim
  4. VBmim

    change "count(*)" into "exists"

    Hello all, Consider the following tables: A: 1.000 records B: 5.000.000+ records each referring to one A record Pretty basic I think. I have a query now that looks like this: select A.c1, A.c2, A.c3 (select count(*) from B where B.id = A.idFromB and B.c1 = somevalue and B.c2 =...
  5. VBmim

    tablelayout & autosize

    Hello, I am making a user control containing a table layout with several labels in it. In the constructor of the user control, I translate the content of the labels (in the language the user defined for the app). The column where the label is in is defined as autosize, but when the width is...
  6. VBmim

    odbc: binding array as parameter

    Hello, I would like to bind an array as a parameter for an odbc command object. I would like to build the query select * from T where T.col in (1,2,3,4,5,6,7,8,9,10); where the list for T.col is combined in 1 parameter... Is this possible? Kind greetings, Mim
  7. VBmim

    statusstrip labels overlap each-other

    Hello, I have a window with a statusstrip. In this statusstrip there are several statuslabels. One of them is a filler (spring = true) to be able to have status labels to the left and the others to the right. On the left there is one plain text statuslabel, then a link statuslabel, then the...
  8. VBmim

    select rights for package

    Hello, I am fairly new to pl/sql programming and I have a problem... I have a simple procedure which I want to create. It would have to go through all the check constraints and rename them to something more readable than SYS_00999; I have already come this far: create or replace procedure...
  9. VBmim

    Adding own objects to combobox

    Hello, I am trying to add 3 of my own objects to a combobox. I can see that 3 items were added, but I cannot see any string or description, only 3 whitespaces. I have made an interface that implements (among other things) the function ToString(). All my objects are implementing this...
  10. VBmim

    Search IN outlook attachments

    Hello, Currently I am working with outlook 2003. Does anybody knows about a way in outlook (or an external tool) to search within attachments? Greetz, VBMim
  11. VBmim

    datagridview checkboxcolumn

    Hello All, I have a datagridview with a checkboxcolumn (bound) in it. I would like to implement 'select all' and 'deselect all' functions, but what I have tried so far has been way too slow. for (int i = 0; i < dgvItems.Rows.Count; i++) dgvItems.Rows[i].Cells["check_analyze"].Value =...
  12. VBmim

    datagridview and old style scrollbars

    Hello, I have inherited a .net application (c#) which was first written in vs2003 but was converted to vs2005 (I do not know how the conversion was made). When I add a datagridview to one of the forms, the scrollbars still have the old windows look (not blue and rounded, but gray and square)...
  13. VBmim

    missing icons in powerbuilder 10.5.1

    Hello all, Yesterday, I installed powerbuilder 10.5.1 (6537). Everything seems fine, but I am missing two icons I used to have before, the properties! icon and the preferences! icon. When I select those in the list of icons (for example in the toolbaritemname of a menuitem), I do not see the...
  14. VBmim

    datagridview modifiers

    thread732-1117257 Has anyone experienced this problem in vs2005? Did you find a solution or explanation? Greetz VBMim
  15. VBmim

    AncestorReturnValue

    Hello With the local variable AncestorReturnValue you can obtain the return value of the event from the ancestor script. Is it possible to obtain the return value from a few ancestors back? E.g: Object 3 inherits from Object 2, which inherits from object 1. An event in Object 1 returns a...
  16. VBmim

    Unresolvable external when linking reference error

    Hello I am brand new to Powerbuilder and I have to support a quite big application. The company I work for has made a sort of framework of their own (containing multiple pbl's) to base their apps on (at least 5). In these apps you have to include the framework pbl's. To get myself to learn...
  17. VBmim

    New in Powerbuilder, need reference books

    Hello I have started a new job two days ago, and I will have to maintain an app written in powerbuilder 10. Because I have no experience with powerbuilder I looked up which books I could use for reference. On amazon (and also on other sites) I only found books up to powerbuilder 9. Is it...
  18. VBmim

    start program on as400 iseries server

    Hello I have to start an as400 program from a vb6 program and I am having some problems... Function testfunction() On Error GoTo handler Dim as400Connection As New ADODB.Connection as400Connection.ConnectionString = strconnAs400 as400Connection.Open Dim cmdtest As New ADODB.Command Set...
  19. VBmim

    get total from crystal reports in vb6

    Hello I am working with visual basic 6 and the rdc8 component of crystal report. I have in my report a total field I would like to extract the value of in a vb6 form. Is this possible? I already tried report.SummaryFields(1).value but it returns empty (while the property name retrieves the...
  20. VBmim

    get total value from crystal report

    Hello I am working with visual basic 6 and the rdc8 component of crystal report. I have in my report a total field I would like to extract the value of in a vb6 form. Is this possible? I already tried report.SummaryFields(1).value but it returns empty (while the property name retrieves the...

Part and Inventory Search

Back
Top