Tuesday, December 11, 2018
404 cant find error in uipath
your folder is too big - in my case somehow email downloads were happening inside the folder
Monday, November 19, 2018
VDI black screen
turn off Tablet PC Input Service
Tuesday, November 6, 2018
stepping in UIpath
when you enter the activity, it is run , not when you leave it
Friday, October 26, 2018
UI Path bug (IMHO)
if you invoke a file and the path is wrong no error will be raised
Tuesday, October 23, 2018
specified element is already the logical child of another element-disconnect it first
close and reopen
Friday, August 17, 2018
nullable int which is key in dapper and getting casting errors?
do this
[ExplicitKey]
[Computed]
[ExplicitKey]
[Computed]
Thursday, August 16, 2018
see why POST data is null
public int SaveBlah([FromBody] Object blah)
{
var jsonString = blah.ToString();
Blah result = JsonConvert.DeserializeObject<B;ah>(jsonString);
}
{
var jsonString = blah.ToString();
Blah result = JsonConvert.DeserializeObject<B;ah>(jsonString);
}
Monday, July 30, 2018
VS Project wont go in debug - no compile errors on VS
run dotnet run project file name at the root folder
now you will see the error
now you will see the error
Access to the path errors
delete bin and obj folders
make sure you are running as Admin
make sure you are running as Admin
Thursday, July 19, 2018
get request info in c# from RequestMessage
response.RequestMessage.Content.ReadAsStringAsync().Result
Tuesday, July 17, 2018
delete duplicate rows
WITH CTE AS
(
SELECT *,ROW_NUMBER() OVER (PARTITION BY [TagID],[TemplateID] ORDER BY [TagID],[TemplateID]) AS RN
FROM [TPDocCore].[TagTemplatexRef]
)
DELETE FROM CTE WHERE RN<>1
(
SELECT *,ROW_NUMBER() OVER (PARTITION BY [TagID],[TemplateID] ORDER BY [TagID],[TemplateID]) AS RN
FROM [TPDocCore].[TagTemplatexRef]
)
DELETE FROM CTE WHERE RN<>1
Wednesday, May 2, 2018
Unable to copy file, Access to the path is denied
Thursday, April 26, 2018
if you are getting your json through a get
remember
return Json(result,JsonRequestBehavior.AllowGet);
return Json(result,JsonRequestBehavior.AllowGet);
JSON - A circular reference was detected while serializing an object of type 'System.Reflection
var result = JsonConvert.SerializeObject(ds, Formatting.Indented,
new JsonSerializerSettings
{
ReferenceLoopHandling = ReferenceLoopHandling.Ignore
});
return Json(result,JsonRequestBehavior.AllowGet);
new JsonSerializerSettings
{
ReferenceLoopHandling = ReferenceLoopHandling.Ignore
});
return Json(result,JsonRequestBehavior.AllowGet);
Wednesday, March 28, 2018
Monday, March 5, 2018
if you cant find save as template
just navigate here /_layouts/15/savetmpl.aspx
Monday, February 26, 2018
opening excel docs in SP in client
Sunday, February 4, 2018
in order to have ellipsis in document library
u need
Wednesday, January 31, 2018
Invalid text value in sharepoint workflow
will happen is the value of the text is larger than 255
Tuesday, January 23, 2018
Thursday, January 18, 2018
Copy and Past in sharepoint lists
Make sure title is not required data in list settings
Subscribe to:
Posts (Atom)