Search results for query: *

  1. C

    Saving Controls' setting/status

    Well i saved the class and used it in my project but its not working i mean its method Initialize do not raise exception but the SetOption raise exception like this : System.NullReferenceException: Object reference not set to an instance of an object. at SIS.ConfigOpt.SetOption(String...
  2. C

    Creating Reports in Crsytal Reports Using MySQL

    Well long time , isnt it? i have tried that before but it takes long time Isnt there any confirguration in Crsytal Reports itself to access MySQL Tables.???
  3. C

    Creating Reports in Crsytal Reports Using MySQL

    Well im administrator myself but no avail :o
  4. C

    Creating Reports in Crsytal Reports Using MySQL

    Well i think you are right but my computer configuration might be wrong because i cant find any MySQL Option in ODBC Connection Sources Section. Could you please tell me why its happening.
  5. C

    Creating Reports in Crsytal Reports Using MySQL

    Connecting to MySQL from Crystal Reports Hello I have been searching on this topic for long on MySQL Forums but im unable to find a suitable answer for my needs.. Well my question is to describe in detail how to connect MySQL with Crystal Reports. I have tried it many times with ODBC but it...
  6. C

    Retrieving Column Information

    Hello I need to retrieve column information about a table and using MySQL.Net connector with MySQL and VB.NET. The code i am using is as follows : (it adds the field names of the specific table in the list view items) Dim myConnection As New MySqlConnection Try Dim rtnItems() As...
  7. C

    Running a thread on demand

    Ok thats fine,,,,, i need to know one more thing....Now as the thread will be initiated in the Save Button Click Event so what about the Cancel Button...When i click it that thread should be aborted! I need to know how to refer the save thread from cancel button?
  8. C

    How do I generate a random string?

    I made it myself...........You can use it for FREE!!!!!!!!!!! Public Class Security Public Enum PatternType UpperCaseOnly SmallCaseOnly NumbersOnly SmallAndNumbers UpperAndNumbers End Enum ' to return a said number of string... Public Shared Function GetString(ByVal total As Integer...
  9. C

    Running a thread on demand

    Well i do the following............ 'create a private thread to handle the saving of form... Dim objSaveThread AsNew Thread(AddressOf _doSaveTransaction) ' as i stated before ' now when the save button is clicked then the this code is executed objSaveThread.Start() Also before...
  10. C

    Up and Down Arrow Keys in a Listview control

    umm i think you can use the Key Down and Key Up events and based on which key pressed you can select that item : Example : If e.KeyCode=Keys.PageDown Then listView.Items.Item(indexOfLastItem).Selected=True End If and same for all If i help let me know or you means something else?
  11. C

    Running a thread on demand

    hello I want to save the data entries through a thread so that while the data is being saved by that thread the data entry operator can enter the next record. i have created a separator procedure to do that and linked it like this : PublicClass frmNewCollegeEntry Inherits...
  12. C

    Multi Threading.......

    ya thats good but i guess thats not a standard way to do this thing
  13. C

    Most First Form

    Nope........ its not a splash screen........its just an introduction page containing two labels which have text in it and a picture box which has a static image.....nothing else! So whats the problem with it???? Waiting for response. Regards
  14. C

    Most First Form

    Hello In my application i need to display an introduction form like displayed in all applications.. Im using the following code to do that : This code is from my main application form's load event PrivateSub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  15. C

    Multi Threading.......

    Thanx for ur reply but my question was how to keep it running until i exit my application...........
  16. C

    Multi Threading.......

    Hello I wanna make a thread which could run in my application independent of main application and stay there until i exit my main application...... Now what i want to make in that thread? I want that thread to check the state of MySQL Server being installed on that machine or on network and when...
  17. C

    Emerging a button in the ListViewItem

    Well actually the same List View Technique i have used before in my earlier project and thats why i was looking for a new way to do this but as you r saying so i think i should move back to the same procedure... Anyways thanx for your help Regards Raheel
  18. C

    Emerging a button in the ListViewItem

    Hello Im attaching a screen shot of output i get through my project... The following code is : Private Sub frmSearchResults_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ' from here start executing query and fetching data in panels and adding panels in...
  19. C

    Emerging a button in the ListViewItem

    Well nothing good happening now... The procudure is called on clicking as i have changed it to the objPanel.Click But it do not effect the state of any panel , i mean do not change the background color of any panel and by the way you might have seen that we can scroll through the panels by Key...
  20. C

    Emerging a button in the ListViewItem

    Well i tried it too but there is no reponse now... Please also let me know at which event add handler.. Currently im doing the following... AddHandler objPanel.MouseEnter, AddressOf SetPanelColours AddHandler objPanel.MouseLeave, AddressOf SetPanelColours Please note that there is a loop...
Back
Top