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

    Change windows Printer Dialog.

    HI, I created a Printer Dialog in Visual Basic. I would like to know if i can replace the default windows 2000 printer dialog with this Printer Dialog i created. If possible, How is it done ? If not, Is there an alternative to this. Thank You, RANN
  2. rann

    Change Printer Dialog.

    HI, I created a Printer Dialog in Visual Basic. I would like to know if i can replace the default windows 2000 printer dialog with this Printer Dialog i created. If possible, How is it done ? If not, Is there an alternative to this. Thank You, RANN
  3. rann

    Notepad

    Hi, I am new to API. I would like to know if we can disable the menu options in windows applications such as Notepad, Solitare game using API calls. For Example i would open notepad from my vb application (which is easy) i need to disable the File->open menu option using API as i open...
  4. rann

    Solitare Game

    Hi, I would like to open a solitare game after Disabling some of the menu options.I can open any application from my VB code but it need to disable some of the menu options. Can this be done using API calls. Thanks in Advance, Any suggestions would be helpfull. RANN
  5. rann

    MS FlexiGrid.

    Hi, When i click on a cell of a FlexiGrid i need a cursor to blink in the cell. How to do this? I tried all the properties. But had no luck. Is there a particular method or a particular property i need to change. If there are no properties can i accomplish this using VB code. I need this only...
  6. rann

    MSFlexiGrid Header

    Hi, I want to have multiple Column Header in MSFlexiGrid is it possible. For example when you put data into a flexi grid you display it as follows. CustID -- CustName 1 -- Mik 2 -- Tim 3 -- Dan 4 -- Rann But i want it as follows CustID -- CustName 1 -- Mike 2 -- Tim Total -- Percentage 2 --...
  7. rann

    Form1.print

    Hi, I printing Text on a form using two methods. For Example: 1)frmMain.CurrentX = 78.28 frmMain.CurrentY = -2.136 frmMain.Print "hello" 2) In the second method i used a Textout API Method TextOut(hPrintDc, 78.28, -2.136, "hello", Len("hello")) Why does...
  8. rann

    variables

    Hi, I recently downloaded some source code from the web and noticed that the programmer has declared variables as follows. Private Sub Test(Total%, count$, Cost!) ......... ........ ........ End Sub what does these %,$ and ! stand for are they part of the variable or do they mean some thing...
  9. rann

    data from a table

    Hi, I have a table as follows. QuestionNum | Answer | NextQuestion ------------------------------------------------------- 1 | Yes | 2 1 | No | 3 2 | True | 4 2 | False | 4 3 | Male | 5 3 | Female | 6 5 | One | 6 5 | Two | 6 5 | Three | 7 6 | Yes | 7 6 | NO | 7 7 | Test1 | - 7 | Test2 | -...
  10. rann

    UnSet Access database Password

    Hi, I need to Unset Access Database password using VB DAO or ADO. How do i unset access password. I know you can change the password using Set datInfo = OpenDatabase("mydatabase") datInfo.newpassword("pwdold","pwdnew") Any help or links would be...
  11. rann

    Picture control and Access data

    Hi, I have a picture control on a form that displays bmp files stored in a Access database. I use " Picture1.Picture = LoadPicture(rstData.Fields("Photo")) " to display the bmp image from the table(rstData is a recordset). But this does not display the bmp file...
  12. rann

    Winsock control PING

    Hi, I had created a Client Server application using winsock control everthing works fine but i need to PING from client to server or server to client to find if either of them are UP. how do i PING using winsock control. For example you could use the word PING and the IP address in...
  13. rann

    OLE MSGraph

    Hi, I am using a OLE (microsoft graph) control to create Graphs. I need to assign the Chart type in run time using VB code. OLE1.chartType = VtChChartType3dBar does not work as it does not recognize chartType. I could double click on the control during run time and change the charttype...
  14. rann

    MS Chart

    Hi, I am using MSChart to create Bar/line/pie Graphs. Once the Chart is created. I am pasting the data from MSGraph to a RichtextBox. Every thing works fine but my X-Y Axis data is very blur and when i make a print out the axis data is unreadable. how do i make this clear and readable. it...
  15. rann

    winsock client/server

    Hi, When my winsock client opens i need to find if the server is listening (or is up).before it connects to it. how to do this. for example a server can use "tcpserver.listen = sckListening" to find if the client is listening. I want the opposite to happen. Any help or links...
  16. rann

    Manipulate Access Reports from VB

    Hi, How can i manipulate an Access Report from VB. For example i have a MS Chart Control on my Access Report. I need to manipulate it from VB so that the user can select the graph type to be displayed (Line, Bar or Pie graph). I do this in regular local code as myMSChart.chartType =...
  17. rann

    VB Reporting

    Hi, I need to create reports in a VB application based on data entered by the user(to a Access Database). I need to have pie,line and bar graphs on the report along with Text. Which is the best way to do this. I dont want to purchase any software for this. I want to use API calls or ActiveX...
  18. rann

    winsock connection

    Hi, In winsock control client/Server programming Can i restore the connection once it has been disconnected. Any help or links would be helpful, Thanks in Advance. Rann
  19. rann

    Adding A image to a CE Image or Picture control

    Hi, I was trying to add a gif file to a form in eVB form. I tried using both Image and Picture control. I gave the whole path as "/windows/pie.gif" but nothing shows up on the form. Do i need to regester any dll's before using these controls in Windows CE or is there a particular...
  20. rann

    Error 429 ActiveX component can't create object

    Hi, I have an VB 6.0 application that uses ADO to create an object using ADODB.connection, ADODB.recorset etc. The application works fine in windows 2000 but in 98 it gives me "Error 429 ActiveX component can't create object". How do i overcome this problem ? Are there any patches in...

Part and Inventory Search

Back
Top