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

    CALL A SUBROUTINE BY VARIABLE (STRING) NAME VB.NET

    Hi, I am painfully stuck on this please help. I have created a DLL through which I need to call procedures in my Application with parameters. I hereby hope to find a way to practical function more or less like this one... Public Sub Main(ByVal formName as String, ByVal subName as String...
  2. paulgenga

    DataTable.Load Method (IDataReader) Failure

    Dear Friend, This method of filling data tables worked perfectly until now... For one particular SQL Statement, it returns only one Row (The last Row) omitting all the others. i.e. 1/10 Sub FillTable(ByVal strSQL As String, ByVal dt As DataTable) Using reader As...
  3. paulgenga

    Read/Write images/pictures on SQL and VB6 using SP

    I need help in reading a image from the database where by I have tried the code as follows but failed with the error message. *Type mismatch* rsTemp.ActiveConnection = strConnection rsTemp.Open "Select * FROM m_patient WHERE Dtd=0 And patient_id = " + Trim(str(FindID)), , adOpenForwardOnly...
  4. paulgenga

    How do we Read/Write Picture Images from/on SQL 2000

    I need help in reading a image from the database where by I have tried the code as follows but failed with the error message. *Type mismatch* rsTemp.ActiveConnection = strConnection rsTemp.Open "Select * FROM m_patient WHERE Dtd=0 And patient_id = " + Trim(str(FindID)), , adOpenForwardOnly...
  5. paulgenga

    How to use DirListBox control with photos

    I need to load pictures from my drive directories on to my VB6 and save it on to my SQL database. I have never used the DirListBox control before. please guide on how i can go about this. img http://www.mysite.com/images/sad.gif
  6. paulgenga

    VB8.Net Bound DatagridView With Unbound Columns

    Jambo, What I need is to have columns on the Bound DatagridView having foreign keys, used to tap information from the foreign data tables and reflect the information on Unbound Columns. The unbound columns should show the right information in a master detail DatagridView setting, at every...
  7. paulgenga

    VB8.Net Bound DatagridView “ADD” Data Rows Problem

    Jambo, What I need is to have values held…be pasted on to the (New Record) Row of a Bound DatagridView on to respective columns programmatically. The closest syntax could be as seen below but this is only applicable for unbound DatagridView's. With DatagridView1.Rows .ADD (col1, col2, col3...
  8. paulgenga

    My Combo's Just Dont Work

    Hi... I have VB8 I have placed the SelectedValue to "AcID" DisplayValue to "AccountName" at runtime when I select a value an item on the particular combo, the focus can not shift to any other item on the form. Help please!
  9. paulgenga

    VB.net 2005/Crystal Report/Deployment

    Hi, I have tried hard to deploy my reports but have not succeeded. What is missing out, I can view them well at design but after deployment they just miss out. What I have done, I have copied all references local, and made the report files copy to output directory always. Please guide. PG
  10. paulgenga

    Easiest way to Link tables in datagrids

    I am very new, just joined this forum. .Net amazed me at how flexible the datagrid can be manipulated in many ways without coding. The expressions created on the dataset columns are very active on the datagrid. I have cracked my head for two weeks looking for the expression that will convey...
  11. paulgenga

    Datagrid SQL Relations LookUp/Column

    I have found this problem. Is it possible to lookup column from a related table by using an expression on the dataset design?.
  12. paulgenga

    To Register Crpe32.DLL

    Hallo, Please help me understand this. I have formated my HD, Re-installed the OS and seagate crystal reports but still this file fails to register. When i try to register manually through regsvr32 "C:\Crep32.Dll" it still fails I have run RegFix and still fails to register this file please...
  13. paulgenga

    ADODB Recordset for More than 1 Subform

    Is it possible to open a recordset with multiple subforms i.e append more than 1 ChildCMD. Set adoPrimaryRS = New Recordset adoPrimaryRS.Open "SHAPE {" & Sv1 & "} AS ParentCMD APPEND ({" & Sv2 & " } AS ChildCMD RELATE LotID TO LotID) AS ChildCMD", db, adOpenStatic, adLockOptimistic
  14. paulgenga

    Working With Multiple Projects

    What Comand is used to open / show a new project. How do you start working on a different Project platform e.g - (this does not work) Dim p as MyProject p.Show Please help. Paul
  15. paulgenga

    Listbox scrolling moves Recordset position

    Hi, I have this problem of having my recordset changing positions while i scroll the list box using up/down arrows. Please help. This is how I setfocus to the list box... With List1 .Clear adoTmpRS.Open "select * from m_Ac order by ac_name", db, adOpenStatic...
  16. paulgenga

    Update Failures on my Datagrid/Subform

    Hallo, Please help, I am a new user of VB(6.0). The datasource for my ("Child") datagrid is a view in SQL. I have used ADO Data Control (Not coded). I expect the datagrid to refresh as soon as the link field is inserted to have the other fields shown respectively from the related File. I have...
  17. paulgenga

    User Interface Limitation.

    Is it possible to make a user interface. To provide security and avoid changes to the original design. I would greatly appreciate any assistance provided. Regards
  18. paulgenga

    Crystal Reports for secured Access .mdb

    How can the crystal report writer bypass the security passwords.
  19. paulgenga

    Using Visual Basic Open Database as in Menu Selection

    Hi, I'm just wondering if this is possible, When I select a recent database on the File Menu, the CurrentDatabse is closed and the selected database is openned on the same window without changing the size of the window. I would greatly appreciate a VB Code that could do the same action. Please.
  20. paulgenga

    Problem with switching between secured mdb databases.

    Hi, I have created 3 Databases with shared Tables. This has helped to ensure centralization of controls to the relevant databases. Can someone tell me of how best to make it possible to switch. between the databases, without repeated passwords I have tried the following code and there is no...

Part and Inventory Search

Back
Top