Calin Tatar
Posts
-
Sharepoint -
Sharepointtry
Lists.asmx
-
SharepointYou may create a Win app, Console, Web app,... Calin
-
SharepointYou don't need a special template for that. Just add a reference to the webservice. Calin
modified on Wednesday, March 11, 2009 1:47 PM
-
SharepointBasically, if you call
GetListItems
webmethod you may pass an XmlNode which represents a CAML. For a sample, have a look at: http://msdn.microsoft.com/en-us/library/lists.lists.getlistitems.aspx[^] Calin -
compilation error while running the application -
Deferred Evaluation in LINQPlease have a look at http://msdn.microsoft.com/en-us/library/bb943859.aspx[^] and see a sample at http://msdn.microsoft.com/en-us/library/bb669162.aspx[^] Calin
-
Web Service Problem -
which API to use?You may use
WebRequest
-
How to create a wrapper class in c#.net?See Wrapper patern[^] Also take a look at the following link for a sample[^] Calin
-
Assigning DataSet value to dropdownlist -
How can I install a db schema while installing a program? -
Graphs disappear from panelWell, you may use this function in
Paint
event. Add an handler forPaint
event of GraphPanel and usee.Graphics
(instead ofGraphPanel.CreateGraphics()
) In this way, your graphs will be drawn every time when theForm
is repainted. Now, callGraphPanel.Refresh()
intrackBarNR_Scroll()
in order to refresh the graph when scrolling. Calin -
Graphs disappear from panelWhere/how are you creating the graphs? Are you not drawing using the
Paint
event of the Panel? Calin -
Reading XElement from XML file -
Process.start don't workC:\\ARV\\pdf\\70863).pdf and C:\\ARV\\jpeg\\70863).JPEG are args? try
Process.Start("U:\\convert","C:\\ARV\\pdf\\70863).pdf C:\\ARV\\jpeg\\70863).JPEG");
-
Cannot use Java generated DES Key in C#Have you tried with different
CipherMode
s? Are you sure you are not removing to many dashes? Calin -
Panel EventYou cannot catch mouse click event because you cannot click on the panel. In Dock.Fill mode, your control covers the entire panel. You may catch the click event in the control and pass it to the panel. Calin
-
Wait for program to continue till webbrowser finish loading siteCool! Calin Tatar
-
Wait for program to continue till webbrowser finish loading siteyou may use
ProgressChanged
event, and check fore.CurrentProgress
ande.MaximumProgress
Calin