Yes, preferable, and we're here to help you about anything you face, really I appreciate this word from you
sounds like I need to learn
, please mark it solved.
Yes, preferable, and we're here to help you about anything you face, really I appreciate this word from you
sounds like I need to learn
, please mark it solved.
I don't know but, did you try to send the menu to back or bring the new document to front?
As there are many users updating database, you need reflect dataset changes to the database once occurred. So you need to reflect\load and it's not good in performance perspective, so use Connected Mode, it's better in such cases.
Without writing single line of code!
Just select a background color for th GroupBox, then in form properties say that color you selected is Transparent from Form properties
Transparent Key = ?
Example
If you select Red as GroupBox background
Transparent Key = Red
loool this thread was on April :) but I don't understand your problem. Clarify please :)
Give me the keys you want to get and it's properties in that way
Exmaple
Key: HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0
Property: ProcessorStringName
Don't worry, just show me you want to learn
Put your key in array
Dim key As String(numberOfKeys)
sorry I've mistake in this instead Dim Keys(numberOfKeys) As string
My first answer is concept :) not for special case, once you load the database tables into your dataset, forget the physical database, and when you add entry to the primary table, you add it into dataset, so get the last entry key from the main table by anyway from dataset, then use it to add entries in child tables, and when you finish your work on the dataset, reflect that changes.
Put your key in array Dim key As String(numberOfKeys)
then loop and once you get value put it into ComboBox or any control you present data into
Dim registrykeys(5) As String
'fill your keys
For Each key As String In registrykeys
ComboBox1.Items.Add(My.Computer.Registry.GetValue(key, "property", "default"))
Next
Your array may be 2D to maintain the property of keys
You can achieve that in various ways
1- Managed C++ within your solution.(in case you've some developers need to write their code in managed C++)
2- Add reference to library aka .dll (developed with managed C++)
Yes, and I think that's the way .eml file works, try to look into scheme to know how to attach multiple files, but don't walk in string compression algorithms, it'd talk a lot of time without proper effect.
Look, it works from Master database, and give me the SQL script and the error you get when you run it
So, what do you need?? Do you face network problem? or you survey our opinion :D?
Why you use this??
Do you use SMTPClient class? to send un\attached mails
Have a look on http://bytes.com/groups/net-xml/178906-change-node-attribute-value
You can googlize it also, I did that :)
What's the difference to run C# code on Windows Server 2003 and XP, Vista or even Windows 7?
All is one, Just read in DirectoryInfo and FileInfo classes part from System.IO namespace.
If you search in this forum you'll find a similar thread too.
As you like, but I used MS SQL Server 2000
1- I can't explain it better than MSDN http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommandbuilder.aspx
2- System.Net.Mail.SmtpClient
would help you.
Multiuser phone book, it's nice :) I developed it when I was C# beginner.
Look when you treat with dataset you treat with database (I don't know if you've to set Enforce relationship property to true or it's set by default) so you can update it then reflect these changes to the physical database.
What the problem?
After the last "." get the string is after
you may have file, its name readme.program.user.txt!!
It's the time to play with string class, you can also use regular expression and you can use FileInfo.
You can use string class to fetch the extension from its name or you can use FileInfo class.
Because the main thread doesn't terminated. You just hide the main form, I think you close application from staff form, right?
so, in its close event add this Application.Exit
Dear, if you've time to read I can send you a book about Data warehouse.
About your questions
Say we've business man who has super market with a lot of branches...
The business man interested to know net profit by year\region\product\sales persons
Fact table: is th point of interest the decision maker needs to know (simple business definition about it)
Fact table: net profit
Dimension table: the categorization used to spread out an aggregate measure aka fact (net profit) to reveal its constituent parts.
Dimensions tables: Year, Region, Product and Sales persons.
Send me email @ <EMAIL SNIPPED> if you need a book regarding this.
Yes, I tried it, did you?
and??
System.Diagnostics
With pleasure ProcessStartInfo commandPromptProcess = new ProcessStartInfo("cmd.exe");
Find out how to make use of this.
I think there no method to do so, you can use DOS commands and call\send parameters to them from C# application.
neither... nor ... represents some table(s) and their relationships in memory it may contain 1 or more tables.
You can make it directly from DataSet, also read in DataSet class
DataSetObject. ??
The idea I don't mean to be silly with you, but you've to try and read in help more than copying code, I hope you understand me well.
Yes, check auto number column properties. but I also prefer to do the generator on your application side.
You can check if the Command Object's Text value has (Select, Insert, Update or Delete) ? using string operations ? I don't know how to use Cci !! Did you try googlize it?
We don't give code!! which made you able to make them separately, let's you do this task.
After assign ComboBox your datasource (your department table) navigate in ComboBox properties you'll find which help you doing your task.
sorry??!
So, relation is One-To-Many
One Question has many Answers and Answer has many Comments
So...
Question(QID, QSubject, QText,....)
Answer(AID, QID, AText,......)
Comment(CID, AID, CText,.....)
haa?
Close this thread, I think you open similar one and it's solved!
Mark it as solved, to be used as reference later.
It's not the place friend :) go to VB forum and ask there.
In your case don't use [auto number] rather generate it yourself in your front end application.
If you need me to work with you it's much appreciated from you, unemployed state feels me sadness :)
What's your Office SDK version?
Dim numbers As List(Of Int32)
while(numbers.Count > 100)
{
if Not numbers.Contains(GetRandomNumber())
numbers.Add(GetRandomNumber())
}