User Profile
Collapse
-
You've really got to elaborate on your question and perhaps place some code with an error message... -
Why would you loop trough your words instead of your BtnList on Line 29? And where do you place your new buttons? Are you sure their not stacked on top of each other because you don't specify their position? Just some thoughts ;-)Leave a comment:
-
Basically, you need to find out how the text is in the text-file. If it's line by line, you just start reading lines till EOF (End of File) and split each line on the character "|". You put them all in an multidimensiona l array so it looks like this:
Code:[0][Date] [0][Subject] [0][Category] [0][Amount] [0][Payment] [1][Date] [1][Subject] [1][Category] [1][Amount]
Leave a comment:
-
Did you install the Crystal Reports Redist on the target server?Leave a comment:
-
MrMancunian replied to 'MSDAORA.1' failed with no error message available, result code: E_FAIL(0x80004005)in C SharpAny chance that you used a reserved word in one of your database tables?Leave a comment:
-
MrMancunian replied to how to populate two dropdown list?when i select state city is automatically filled.in C SharpWhat happens if you put a breakpoint onCode:DataSet ds1 = new DataSet();
Leave a comment:
-
I'm afraid I don't understand what you're trying to do here... What does Me refer to? Or what should it refer to? You say you want to set the value of the class from within the class, but does that mean that you want to create a new instance of the class? If not, what is the datatype of Me and what is the output from Deserialize?Leave a comment:
-
You can, but you need to make sure that the credentials you use to access your SQL Server via Visual Studio also have rights to create a database.Leave a comment:
-
-
Take the value from the cell you want to increment, convert it to an integer, increment it with one and assign it as the new cell value :-)Leave a comment:
-
See line 39: "Presist" should be "Persist". If that's not the problem, please post the full error message.
StevenLeave a comment:
-
On what line does the error occur? Did you check the value of ConfigurationMa nager.Connectio nStrings["ConnectionStri ng"].ConnectionStri ng in runtime? If not, give it a breakpoint and add a Watch.
StevenLeave a comment:
-
RadListBox2.Ite ms[i]
is the Item itself. You need theRadListBox2.Ite ms[i].Value
orRadListBox2.Ite ms[i].Text
.
StevenLeave a comment:
-
If you have C# code, open it in the .NET-reflector and it will convert it to VB.NET code.
StevenLeave a comment:
-
Create a service that starts with the OS and checks if your app is running. If not, start it.
StevenLeave a comment:
-
Where do you declare @Username and how does it get its value? Did you write this yourself or did you copy/paste it? Check out this insight to find out how a query should look.
StevenLeave a comment:
-
Do you want to check if an extension was manually entered in a textbox or do you want to check a file for an extension? In the first case, split the text in the textbox and use "." as splitcharacter and put it in an array. Check the last part of the array to determine the entered extension.
If you want to check the extension of a file, use the System.IO.FileI nfo. It works like this:
Code:Dim fi As New System.IO.FileInfo("<path
Leave a comment:
-
You can't. Publishing you application with a ClickOnce means that an application is installed for one user only in de Application Cache. If you want to specify the location where it's installed, you should create a Setup project within your solution.
StevenLeave a comment:
No activity results to display
Show More
Leave a comment: