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

    Reading data from serial port

    Hello, I've a barcode scanner where I can communicate in a two way direction. I'm listening on a serial port to know if an user have scanned a barcode. When data is entered in the serial port by scanning a code, I send a message back to the serial port that will be displayed at the barcode...
  2. ndevriendt

    Run form from a class library (DLL)

    Hello, Is it possible to call a form, from a class in a class library project (DLL). I have a dll that reads barcode scannings. These dll is running in a windows service. On some circumstances I need to ask some extra data, and I want to show a form that asks additional data. Is this...
  3. ndevriendt

    Iframes and refreshing main page

    Hello, I have a web page with a grid. Below the grid I have a panel on which I dynamically create a Iframe that shows a website. The action that the user does, decide which website should be shown in the iframe on the panel. I'm using the following code : Panel1.Controls.Add(new...
  4. ndevriendt

    Master and Child pages

    Hello, I'm creating my first ASP.NET project in Visual studio 2005. I have created a masterpage (that contains a grid) and content pages. The action that the user do on the grid decide which content page that should be shown. With the link of the masterpage in my contentpages, I see always...
  5. ndevriendt

    2 problems with infragistic controls

    Hello, I'm using the infragistic webgrid and weblistbar in my asp appliction. I have with these controls two problems: WebGrid: My grid is grouped at a column. When my page is reloaded, is every time my grid collapsed. (I do in the load of my page the test on...
  6. ndevriendt

    What means DB_E_BADROWHANDLE(0x80040E04).

    Hello, I'm writing a ASP.NET page that makes a connection to a AS400 system. ConnectToDatabase(ref objDbCommand); IDataReader objDataReader = objDbCommand.ExecuteReader(); while(objDataReader.Read()) { strValue = objDataReader.GetString(0); } On the getstring command I get the error...
  7. ndevriendt

    Shared document list control in sharepoint

    Hello, When I go in sharepoint with my mouse over a document in the list of shared documents I get a combobox where I can choose some actions that I want to do on this document. Can somebody tell me which control this is or where I can find some code to do this, because I'm making a asp page...
  8. ndevriendt

    Shared document list control in sharepoint

    Hello, When I go with my mouse over a document in the list of shared documents I get a combobox where I can choose some actions that I want to do on this document. Can somebody tell me which control this is or where I can find some code to do this, because I'm making a asp page and I want to do...
  9. ndevriendt

    Make actions on a record in a datagrid

    Hello, I'm programming a web appliction in ASP.Net. I have a grid with records of customers. I want that when the user push on a button (or something else) in the grid that there appears a menu with the possible actions he can made. Is this possible (with external tool) or are there other...
  10. ndevriendt

    Connection to AS400 from C#

    Hello, I've written and asp application in C# that's make an connection with oledb to AS400. Every time takes my connection.open statement very long (about 5 sec). I think there is no connection pooling. Is there somebody that has the same problems or can help me ? I'm using the following...
  11. ndevriendt

    Installing webparts

    Hello, I'm very new on sharepoint and I'm now trying to create webparts. I've created a web part library project with one webpart. I've assiging a strong name with the sn.exe command. I have installed the dll on the server with the tool InstallAssemblies.exe and this works fine. Now I've added...
  12. ndevriendt

    No invites outstanding for file XXX

    Hello, I get the error 'No invites outstanding for file VBL400FM in library ZKHPGM. (C I) ' when I use the page down button on my subfile. Is there somebody that can tell me how I can fix this. I'm using the invite keyword in my DDS. See here some code of my screen and RPGLE program A...
  13. ndevriendt

    INVITE and ROLLUP

    Hello, Since I've introduced the invite keyword in my subfile, the indicator (96) that I specified on my rollup keyword will not turn on when I use the Page Down button. When I debug I see that indicator 89 is set off. Have someone an idea how I can fix this ? A N89...
  14. ndevriendt

    Show subfile without waiting until the user press a key

    Hallo, Is this possible ? I want to call an other program that show's an overlaying window with a message on my subfile. I want that my subfile first is shown on the screen and that immediatly after this my programm wil run. My problem now is that when I show my subfile the program is...
  15. ndevriendt

    SFLDROP

    Hello, I'm using the following code in my DDS form to show a second line in my subfile when the user ask it. A 97 SFLDROP(CF08) A N97 SFLFOLD(CF08) Herefore I give them the opportunity to do this with the function key F08. My problem now is...
  16. ndevriendt

    Client Access problem

    Hello, We've upgraded our iseries AS400 720 from V4R4M0 to V5R1M0. since then we 've got a problem with access of data. When we check the connection with our server we get the following errorcodes : CWBCO1003,1047 and 1008. On our server we also get a joblog on the job QZDASOINIT with the error...
  17. ndevriendt

    Client Access problem

    Hello, We've upgraded our iseries AS400 720 from V4R4M0 to V5R1M0. since then we 've got a problem with access of data. When we check the connection with our server we get the following errorcodes : CWBCO1003,1047 and 1008. On our server we also get a joblog on the job QZDASOINIT with the error...
  18. ndevriendt

    Duplicate key error handling

    Hello, I'm using the following statement to write a record WRITE FILENAME 55 If *In55 = *On CALL PROGX EndIf I want only call PROGX when the reason of the failing write command is 'DUPLICATE KEY ERROR'. Is therefore a returing error code that I can test ...
  19. ndevriendt

    Using SQL in RPG

    Is it possible to use the following statement in SQL/400 ? Select Top 5 * from FileX I want to select only the first 5 records from my table Thanks for your time and answer Nico
  20. ndevriendt

    Combining two tables in a logical file

    Hello, In SQL there is an UNION instruction where it is possible to combine two queries with the same record structure, and make a sort on the result of this combination. Is this also possible in a logical file ? I haven the following query select donrdo,patndo,udnrud as avwdo,dbdtud as...

Part and Inventory Search

Back
Top