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 Wanet Telecoms Ltd 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: TerraSamba
  • Content: Threads
  • Order by date
  1. TerraSamba

    error creating windows handle in usercontrol

    Hi guys, done it again, got myself stuck ... this time on the following issue: I have made a user control that more or less simulates a grid. You can set the amount of columns,rows, cell size, colors etc. This works fine. This user controls simulates a grid by placing checkboxes on the...
  2. TerraSamba

    image in datagrid

    Does anybody know if it is possible to place an image in the datagrid ... and not unimportant how? The gap between theory and practice is not as wide in theory as it is in practice.
  3. TerraSamba

    Singleton/channels

    I am creating a server component that will supply one to many clients with events in case certain values in database tables change. This component will be implemented as a singleton class by a host application (a windows service) on the server machine so I will be sure all the clients receive...
  4. TerraSamba

    optimizing query

    Guys, I have a query that is executing somewhat slowly ... Here is the query: SELECT @strPeriod AS Period, __QCWhs_W1.WhsShortName, __QCInput.strWhsProdCode, __QCInput.strCPostOrig, SUM(__QCInput.decUnitsOrig) AS decUnitsOrigSum, SUM(__QCInput.decValuesOrig) AS decValuesOrigSum...
  5. TerraSamba

    dynamic table creation (table name as variable)

    I want to create and reference some tables dynamicly in a Stored Proc. For instance DECLARE @Tablename VARCHAR(50) DECLARE @Count INT WHILE @Count<5 BEGIN SELECT * INTO @Tablename + CAST(@COUNT AS VARCAHR(5)) FROM MyTable WHERE MyCol1=100 + @Count SET @Count=@Count+1 END Is...
  6. TerraSamba

    problem resolving localhost

    Hi guys, maybe you can help me on this... First of all, I am not 100% into this ip-DNS stuff, so correct me where I go wrong: I am running Windows XP pro with the build-in IIS server, connected through the internet with a static ip adress. IE does not take www.localhost.com. When I use the ip...
  7. TerraSamba

    programs does not close correctly

    my program does not close correctly, I have one KillApp routine that destroys all the objects, but afterwards the program is still visible in the task manager as a not responding program. Has anybody any idea what could be the cause? The program uses the Inet object to retrieve files from an...
  8. TerraSamba

    hosting IE in windows form creates error

    Hi, I'm trying to host axWebBrowser object in a windows form, but I get this error: A first chance exception of type 'System.Runtime.InteropServices.COMException' occurred in system.windows.forms.dll Additional information: Unknown error And I have not even asked for a page then ... Anyone...
  9. TerraSamba

    Can anyone explain why I get this e

    Can anyone explain why I get this error while copying sqlcommand.parameters? Some background: I'm working on a program with a lot of tables in several sql server 2000 databases. Because the creation of the data adapters are all more or less the same, since I work with stored procedures, I...
  10. TerraSamba

    Any tips on remoting objects?

    I have been wrestling with the remoting samples. But I cannot seem to get it to work. Wondering if any of you guys could give me a hand or know some places where I read up on this matter: Here is what I want to do: I am making an app. that needs to know if other people changed data in the...
  11. TerraSamba

    Evaluating boolean statements

    I want to create a toolbar with my application with numerous button combinations. I want to have the combination ability that the messagebox has. Like: VbOkOnly + vbDefaultButton2 + vbExclamation (In my case: tbStyle= btnNew + btnPaste + btnCopy + etc) But I have no idea how these boolean...
  12. TerraSamba

    multi threading

    Hi, I want to execute some functions on an other thread than the rest of the hosting class. I want the hosting class to receive an event with the results of the execution when the command has finished running. Does anyone have some tips for me how to implement multithreading? Thanx, Terra
  13. TerraSamba

    Realtime data vs ADO 2.7

    Hi guys, I'm kinda stuck with this problem: I want to implement a real time data solution with SQL Server 2000 and VB6, by using ADO 2.7 objects. I've come a long way allready. Tables, classes, stored procedures etc are all ready. But I am struggeling a bit with my data refreshes on screen...
  14. TerraSamba

    sql server 2000 vs ado dynamic cursor gives recordcount -1

    Hi all, I want to implement a real time data solution with SQL Server 2000 and ADO 2.7 But where I find myself untill now is stuck on a tricky part: They say the only cursortype that can detect new records serverside is the dynamic cursor. But when I ask for the recordset, the recordcount...

Part and Inventory Search

Back
Top