Search results for query: *

  • Users: bghanim
  • Content: Threads
  • Order by date
  1. B

    Task Schedular can't start a compiled exe file

    Hello all, I've developed a Console Application that retrieves the list of unread messages for downloading their attachments into the file system.. it works fine when the exe is double clicked. This application needed to run every day, so I created a scheduled task, but when it runs...
  2. B

    Active Control

    Hello All, In ymy application, aI need to know the currnet selected control i.e. there's 5 textBoxes, how can I know which textBox has the cursor in.??? Regards, Baha A. Ghanim
  3. B

    Caching

    Hello all, I need to do caching with my application i.e. I have a textBox text changed event, each time the user enters a character, a connection to the sql server is done. Instead of connecting to the sql server each time the user search an employee name, I stored the data of employee...
  4. B

    Form Size

    Hi All, Im developing my application using a monitor 19", when I ran my application on another machine with monitor for example 17", form layout will be changed i.e. some part of the form is not displayed. How can I make my application robust enough to overcome this problem? Regards...
  5. B

    Crystal Reports Problem

    Hello All, I have created crystal reports in my application, through the add/remove databases, then making a new connectiobn (Oledb) to the SQL server and selecting certain table or certain stored procedure.. every thing worked correctly, but the problem which Im seeing now is what will...
  6. B

    Thread Problem

    Hello All, I have a thread in my application that tries to load a form and display it, but my problem is that the form appears for a some seconds then disappears. I think this is because of the thread is being killed, right? How can I fix this problem Dim loadThread As New...
  7. B

    Changing ComboBox ForeColor when it becomes disabled

    Hello All, I need to change the look of a comboBox when it becomes disabled (changing its ForeColor from shaded to be for example black) How can I do this? Regards, Baha
  8. B

    User defined Control Problem

    Hello All, I've created a control that inherits TextBox, and it's working correctly i.e. I can put an instance of it on the form design, and every thing is working as I need at run time. But there's a problem with it, that I can't declare an instance of it through the code (to create a...
  9. B

    DataGrid with buttons in it

    Hello All, I need to include in my dataGrid cells buttons i.e. I need a column in the dataGrid that has in each cell belongs to it a button that handle an event based on the current selected index of the dataGrid. Could it be done with vb.net 2003 and how? Any help will be appretiated...
  10. B

    Tab control backColor ??

    Hello All, I need to change the backColor of the tab control (not the the tab page), but this control doesn't have the backColor property... what should I do to overcome this problem? Regards, Baha
  11. B

    Insert into with the key word returning ??

    Hello all, Is there an insert statment with the keyword returning in sql Server 2000 ? for example, insert into table_name (fname, lname, age) values ('Baha', 'Ghanim', 23) returning id into @tmp table_name structure: id = primary key fname lname age I've used this statement in...
  12. B

    PictureBox Filename problem

    Hello All, I need to get the file name of a pictureBox within my application. How can I get it at run time i.e. to have some button and when clicking it, it should display the current filename of the pictureBox. Regards, Baha
  13. B

    Tab Control Problem

    Hello All, I have a tab control in my application, and there are two tab pages within this control. I need to remove tab page 2 when I click tab page 1. I know to remove certain tab, but the problem is how to put the remove code in the tab page click event. Any help will be...
  14. B

    Crystal Reports

    Hi All, I need to do with my application dynamic report i.e. to make the report read its data source from a dataSet. look at this code: Dim con As New OleDb.OleDbConnection Dim dataAdp As New OleDb.OleDbDataAdapter Dim dataSetObj As New dataSet <<<--------------------...
  15. B

    Cant display image while requesting sql server 2000

    Hi All, I have a big problem with my application, I have a progress bar image (animated gif file), I need to show the image before I request the server and after a reply is received from the sql server, image should be invisible, but when I push the button to request the server, nothing happens...
  16. B

    test connection of database server

    Hello All, I need to do a wizard for my application that appears to the user when it has its first run on the machine. The wizard should ask the user to specify the ip address of the sql server 2000 database. then the wizard will be responsible of testing the connection, if the connection...
  17. B

    Directory Picker

    Hi all, I need to show the dialog "select folder" and get the path selected, using vb.net. The OpenFileDialog control is useless as I want to select a folder and not a file.
Back
Top