Search results for query: *

  1. J

    NHibernate....

    im talking about Object Relation Mapping, NHibernate for .net and Hibernate for java.....
  2. J

    How to stop a button from submitting?

    Hi guys, please show me how to stop a button from submmiting to server? Thanks a lot in advance. Jerry.
  3. J

    Frame Problemas...pls help (urgent)

    Customize Browse button...pls help(urgent) Hi guys, dose any one know how to customize Browse button (<input type = file>) ??? I waant to serparate the textbox and the browse button.Meaning, I want to put the browse button in one place and the textbox goes with the browse button in one...
  4. J

    Frame Problemas...pls help (urgent)

    hi guys, it would be preciated if any one could help me on this. i have : pageA (normal aspx) pageB (aspx with a frame target to pageC) It goes like this, there is a button in pageA redirect to pageB , pageB's frame target to pageC, and there is a button pageC link back to pageA...
  5. J

    Query from CSV file help...(urgent)

    Hi guys, does any body know how to query an csv file in vb.net? Like, select * from a.csv where ...=... , the thing is, my csv dosent have a column name, there is only data. it wuold be appreciated if any one can help me thanks Jerry.
  6. J

    NHibernate....

    hi guys, have any of you used Hibernate? How is it? Please suggest if there is any better free ORM tool if you have used. Thank you a lot. jerry. :)
  7. J

    Use Typed or Untyped dataset?

    Thx for ur respond.it's helpful.:) by the way, i would like to know when you have your Customer dt and Orders dt filled. How could they be bound to a datagrid? Do i need to have another datatable to represent Customer dt and Order dt?if yes, what is the style of the dt, typed or untyped...
  8. J

    Use Typed or Untyped dataset?

    hi guys, normally i have one typed dataset for each table in my database, but what if i need retrieve data from 2 tables then what should i do: 1) create an untyped dataset represent 2 tables on database 2) add more column from table2 to table1's dataset 3) make another separate typed dataset...
  9. J

    How to get total page of PrintPreviewDialog

    Thank for your response. it seems that your code get the total page after all pages have printed. Can you show me the way of getting this result: " page 1 0f 10 , page 2 of 10 , ....." I would like to print this in every page when it first generated.Not waiting until every pages are generated...
  10. J

    How to get total page of PrintPreviewDialog

    Hi all, it would be appreciated if any one can help me out on this: Pls show me how to get total page of PrintPreviewDialog thanks alot in advance. Jerry
  11. J

    How to handle OK button of PrintDialog (ugent)

    Hi guys, It would be appreciated if any one can help me on this. as i supposed, after asigned a PrintDocument to PrintDialog.Document then after the OK button of the PrintDialog it will print the content of my PrintDocument.But it didnt. so i try this: MyPrintDlg.AllowSomePages = True If...
  12. J

    Pls Help - Write code at runtime- (urgent)

    hi all, It would be apreciated if any one can help me on this: Is there any way to write code at run time? for example: public sub WriteCode(byval code as string) .... code.... end sub public shared sub main() WriteCode("smgBox(some string)") end sub *** what i want is when the main()...
  13. J

    How to handle PRINT Button of PrintPreviewDialog (ugent)

    Hi all. It's would be appreciated if any one can help me on this: I want when I press Print button on the menu bar of the PrintPreviewDialog it also do some other things for me.. thank you very much in advanced. Jerry.
  14. J

    Clone Probes.

    Cant marks a dotnet's class as Serializable. My child class in the array that i want to deep clone contains this event argument: System.Drawing.Printing.PrintPagEventArgs But we cant mark PrintPagEventArgs class as Serializable because it cannot be modified. So is there any way to deep...
  15. J

    Clone Probes.

    I still got problem the foremention way is just used for those class that you made, for my case, my child object has refferent to .Net object that can not be modify... So it end up with the error : That .Net object has not yet mark serializable !!! :( Can any body help me?
  16. J

    Image with Form Authentication

    hi all, It's would be appreciated if any one can help me. I have a Login page with a logo picture.In web.config i wrote this: <authentication mode="Forms"> <forms loginUrl="Security/Login.aspx" protection="None"> <!--<credentials passwordFormat = "SHA1"> </credentials>-->...
  17. J

    Clone Probes.

    thanks thanks very much indeed, it works. :)
  18. J

    Clone Probes.

    Hi all, It's would be appreciated if any body can help me this: I have the following class: Public Class cell Implements ICloneable Public name As String Public Function Clone() As Object Implements System.ICloneable.Clone Dim c As cell = Me.MemberwiseClone Return c End Function End Class...
  19. J

    3 levels event handling help...

    Hi guys, pls help me out of this.... I have 3 classes, Report, Row and Cell Report has a collection of Row (10 rows), 1 ROW as 1 Cell (in my example) What i want is: when I change height in Cell , the Row's height is change and the Report's height also change. *** My probs: my row's...
  20. J

    Typed and Untyped dataset

    hi all, I have 2 typed dataset corresponding to 2 tables (Student, Book) then I would like to bind this two dataset to a datagid to list all student and their borrowed book, What i will do is: Get Student dataset, then make a for loop run through it's items, for each item i will make a...
Back
Top