Hi All,
I have a Crystal Report in VS 2005, and I've added an image (png) that has a transparent background. The transparent portion shows up as solid white in the report however.
Is there any way I can get this to work in CR ?
Thanks in advance for your help.
-Adam
-Adam T. Courtney
I'm recieving drap drop events in my application. Files work just fine using the following:
if(e.Data.GetDataPresent(DataFormats.FileDrop) )
{string[] files = (string[])e.Data.GetData(DataFormats.FileDrop);
}
But if I drag a shortcut, such as "My Documents", I can't get it to work. Any Ideas...
We use XML documentation in our C# project.
but we are getting annoying warnings on all of our crystal reports that are in our project.
is there a way to make the reports internal so these errors go away? I would put dummy comments on them but the crystal file has the following warning at the...
If I make an HTTP handler factory.
It picks up www.thesite.com/ just fine.
but If I go to www.thesite.com/nonexistdir/
it does not pick it up.
If I do www.thesite.com/nonexistdir/default.aspx
then it picks it up.
How can I get the handler to pick up the non existant sub directory without...
Here's my scenario and dilema.
I have created an ActiveX control that executes inside of a web page.
Inside this ActiveX control I open MS Word and feed it a downloaded document. Then on the BeforeSave event I save the document and post it to another web page.
the Abbreviated code looks...
I need some method to determine if the code that is executing in a GUI app or as a Windows Service.
I have some code in a dll that will either present a message box (in gui mode) to the user, or write to the event log (in windows service mode). How can I tell which mode the code is executing...
Ok, this is tricky:
Given the following example table:
Id, SeqNum, BoolType, BoolValue
1, 1, 1, 1
1, 2, 1, 0
2, 1, 1, 1
2, 2, 1, 1
3, 1, 1, 1
3, 2, 0, 0
Id seperaties the entries,
BoolType 1 = And, 2 = Or
BoolValue 0 = False, 1 = True
So For Id 1, we need to determine if it is true
In...
I found a speed issue in my app,
Here is the form:
Option Explicit
Private mCol As Collection
Private Sub Command1_Click()
Dim lngIndex As Long
Dim objTest As clsTest
Set mCol = New Collection
For lngIndex = 1 To 20000
Set objTest = New clsTest
mCol.Add objTest...
All,
I cannot find any documentation on weather or not WITH RECURSIVE statements are supported in MSSQL 2000.
Anyone have any info on this?
-Adam T. Courtney
Ok, here's the situation:
Table:
Class Seq EffDate RmvDate
2 1 1/1/2003 10/31/2003
3 1 1/1/2003 6/30/2003
3 2 7/1/2003 10/31/2003
If this account has class 2, they must also have class 3.
In the example above, the case is valid, they have class 3 for the...
If I have a procedure as follows:
Private sub DoSomethingWithMe(byref objMyThing as clsCool)
objMyThing.IsCool = True
End Sub
Does VB Increment the link counter in the object.
And if so does it decrement it on exit as well?
Or should the procedure be like this?
Private sub...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.