<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/posts/rss.xsl"?>
<rss version="2.0">
<channel>

<title>https://smartdevelop.loxblog.com</title>
<link>https://smartdevelop.loxblog.com</link>
<description></description>
<language>fa-ir</language>
<generator>loxblog.com</generator>
<copyright>loxblog.com</copyright>


<item>
<title>post</title>
<link>https://smartdevelop.loxblog.com/post-14</link>
<guid>https://smartdevelop.loxblog.com/post-14</guid>

<description><![CDATA[





***************************************************************************************************
دانلود آموزش به صورت PDF: دانلود
***************************************************************************************************
کدهایی که باید در Button نوشته شود:
SaveFileDialog save = new SaveFileDialog();save.ShowDialog();label1.Text = save.FileName;
***************************************************************************************************]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>post</title>
<link>https://smartdevelop.loxblog.com/post-13</link>
<guid>https://smartdevelop.loxblog.com/post-13</guid>

<description><![CDATA[






دانلود آموزش به صورت PDF : دانلود
***************************************************************************************************
کد هایی که باید در Button نوسته شود:
OpenFileDialog openFileDialog1 = new OpenFileDialog(); openFileDialog1.Filter = "Image Files|*.bmp;*.jpg;*.jpeg;*.png;*.gif"; if (openFileDialog1.ShowDialog() == DialogResult.OK) { this.pictureBox1.Image = Image.FromFile(openFileDialog1.FileName); this.pictureBox1.Tag = openFileDialog1.FileName; }
***************************************************************************************************
کد هایی که در PictureBox باید نوشته شود:
if (pictureBox1.Tag != null) { System.Diagnostics.Process imageViewerProcess = new System.Diagnostics.Process(); imageViewerProcess.StartInfo.CreateNoWindow = false; imageViewerProcess.StartInfo.FileName = "rundll32.exe"; imageViewerProcess.StartInfo.Arguments = @"C:\WINDOWS\System32\shimgvw.dll,ImageView_Fullscreen " + pictureBox1.Tag.ToString(); imageViewerProcess.Start(); }
***************************************************************************************************]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>post</title>
<link>https://smartdevelop.loxblog.com/post-12</link>
<guid>https://smartdevelop.loxblog.com/post-12</guid>

<description><![CDATA[





دانلود آموزش به صورت PDF:دانلود
***************************************************************************************************
کد برنامه خواند نام فایل و آدرس ذخیره شده فایل:
OpenFileDialog ofd = new OpenFileDialog();string filename = "";string path = "";if (ofd.ShowDialog() == DialogResult.OK){filename = System.IO.Path.GetFileName(ofd.FileName);path = System.IO.Path.GetDirectoryName(ofd.FileName);}MessageBox.Show(filename, "Filename");MessageBox.Show(path, "Directory");
***************************************************************************************************]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>اسکریپت تغییر تاریخ در ویندوز</title>
<link>https://smartdevelop.loxblog.com/اسکریپت-تغییر-تاریخ-در-ویندوز</link>
<guid>https://smartdevelop.loxblog.com/اسکریپت-تغییر-تاریخ-در-ویندوز</guid>

<description><![CDATA[


&nbsp;
برای دانلود کلیک کنید
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>اسکریپت حذف درایو</title>
<link>https://smartdevelop.loxblog.com/اسکریپت-حذف-درایو</link>
<guid>https://smartdevelop.loxblog.com/اسکریپت-حذف-درایو</guid>

<description><![CDATA[

&nbsp;

&nbsp;
برای دانلود کلیک کنید
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>post</title>
<link>https://smartdevelop.loxblog.com/post-11</link>
<guid>https://smartdevelop.loxblog.com/post-11</guid>

<description><![CDATA[
بدون ادامه مطلب]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>post</title>
<link>https://smartdevelop.loxblog.com/post-10</link>
<guid>https://smartdevelop.loxblog.com/post-10</guid>

<description><![CDATA[
بدون ادامه مطلب]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>سورس صف (++C)</title>
<link>https://smartdevelop.loxblog.com/سورس-صف-c</link>
<guid>https://smartdevelop.loxblog.com/سورس-صف-c</guid>

<description><![CDATA[

&nbsp;
#include #include using namespace std;int Q[10];int front, rear;void ADD(){&nbsp;&nbsp; &nbsp;int x;&nbsp;&nbsp; &nbsp;if (front == (rear + 1) % 10)&nbsp;&nbsp; &nbsp;{&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "*****Aryy IS full****\n";&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return;&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;cout &lt;&lt; "&nbsp;&nbsp;&nbsp;&nbsp; Enter A Number: ";&nbsp;&nbsp; &nbsp;cin &gt;&gt; x;&nbsp;&nbsp; &nbsp;Q[rear] = x;&nbsp;&nbsp; &nbsp;cout &lt;&lt; Q[rear] &lt;&lt; " = " &lt;&lt; x &lt;&lt; endl;&nbsp;&nbsp; &nbsp;rear = (rear + 1) % 10;}void Del(){&nbsp;&nbsp; &nbsp;if (rear == front)&nbsp;&nbsp; &nbsp;{&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "&nbsp; ++++Queue Is Empty!!!+++\n";&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return;&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;cin &gt;&gt; Q[front];&nbsp;&nbsp; &nbsp;front = (front + 1) % 10;}int main(){&nbsp;&nbsp; &nbsp;cout &lt;&lt; "********************************************************" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smartdevelop.ir" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "********************************************************" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;char c;&nbsp;&nbsp; &nbsp;front = 0; rear = 0;&nbsp;&nbsp; &nbsp;do {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;printf("Enter A for ADD\n");&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;printf("Enter D for Delete\n");&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;printf("Enter Q for Exit\n");&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cin &gt;&gt; c;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if (c == 'a') ADD();&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if (c == 'd')Del();&nbsp;&nbsp; &nbsp;} while (c != 'q');}
&nbsp;
&nbsp;از کتابخانه های&nbsp; iostream&nbsp; و&nbsp; conio.h&nbsp;  استفاه کنید
&nbsp;
سورس : دانلود
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>سورس استک , لیست پیوندی (++C)</title>
<link>https://smartdevelop.loxblog.com/سورس-استک--لیست-پیوندی-c</link>
<guid>https://smartdevelop.loxblog.com/سورس-استک--لیست-پیوندی-c</guid>

<description><![CDATA[

#include#includeusing namespace std;/** Node Declaration*/struct node {&nbsp;&nbsp; &nbsp;int info;&nbsp;&nbsp; &nbsp;struct node *link;}*top;/** Class Declaration*/class stack_list {public:&nbsp;&nbsp; &nbsp;node *push(node *, int);&nbsp;&nbsp; &nbsp;node *pop(node *);&nbsp;&nbsp; &nbsp;void traverse(node *);&nbsp;&nbsp; &nbsp;stack_list() {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;top = NULL;&nbsp;&nbsp; &nbsp;}};/** Main: Contains Menu*/int main() {&nbsp;&nbsp; &nbsp;cout &lt;&lt; "********************************************************" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smartdevelop.ir" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "********************************************************" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;int choice, item;&nbsp;&nbsp; &nbsp;stack_list sl;&nbsp;&nbsp; &nbsp;while (1) {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "\n-------------" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "amaliat bar roie Stack" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "\n-------------" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "1.push kardan be stack" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "2.Pop kardan az stack" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "3.Traverse the Stack" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "4.Quit" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "entekhab gozine morednazar: ";&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cin &gt;&gt; choice;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;switch (choice) {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;case 1:&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "Enter value to be pushed into the stack: ";&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cin &gt;&gt; item;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;top = sl.push(top, item);&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;break;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;case 2:&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;top = sl.pop(top);&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;break;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;case 3:&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;sl.traverse(top);&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;break;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;case 4:&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;exit(1);&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;break;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;default:&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "Wrong Choice" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;return 0;}/** Push Element into the Stack*/node *stack_list::push(node *top, int item) {&nbsp;&nbsp; &nbsp;node *tmp;&nbsp;&nbsp; &nbsp;tmp = new (struct node);&nbsp;&nbsp; &nbsp;tmp-&gt;info = item;&nbsp;&nbsp; &nbsp;tmp-&gt;link = top;&nbsp;&nbsp; &nbsp;top = tmp;&nbsp;&nbsp; &nbsp;return top;}/** Pop Element from the Stack*/node *stack_list::pop(node *top) {&nbsp;&nbsp; &nbsp;node *tmp;&nbsp;&nbsp; &nbsp;if (top == NULL)&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "Stack is Empty" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;else {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;tmp = top;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "Element Popped: " &lt;&lt; tmp-&gt;info &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;top = top-&gt;link;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;free(tmp);&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;return top;}/** Traversing the Stack*/void stack_list::traverse(node *top) {&nbsp;&nbsp; &nbsp;node *ptr;&nbsp;&nbsp; &nbsp;ptr = top;&nbsp;&nbsp; &nbsp;if (top == NULL)&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "Stack is empty" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;else {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "Stack elements :" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;while (ptr != NULL) {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; ptr-&gt;info &lt;&lt; endl;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;ptr = ptr-&gt;link;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;}}
&nbsp;
&nbsp;
از کتابخانه های&nbsp; iostream&nbsp; و&nbsp; conio.h&nbsp;  استفاه کنید
&nbsp;
سورس : دانلود]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


<item>
<title>سورس پشته ( Stack )</title>
<link>https://smartdevelop.loxblog.com/سورس-پشته--stack</link>
<guid>https://smartdevelop.loxblog.com/سورس-پشته--stack</guid>

<description><![CDATA[

#include #include using namespace std;#define MAX 11class Stack {&nbsp;&nbsp; &nbsp;int top;public:&nbsp;&nbsp; &nbsp;int a[MAX];&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Stack() {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;top = -1;&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;bool push(int x);&nbsp;&nbsp; &nbsp;int pop();&nbsp;&nbsp; &nbsp;bool isEmpty();};bool Stack::push(int x) {&nbsp;&nbsp; &nbsp;if (top &gt;= (MAX - 1)) {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "Stack Overflow";&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return false;&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;else {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;a[++top] = x;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; x &lt;&lt; " pushed into stack\n";&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return true;&nbsp;&nbsp; &nbsp;}}int Stack::pop() {&nbsp;&nbsp; &nbsp;if (top &lt; 0) {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "Stack Underflow";&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return 0;&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;else {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;int x = a[top--];&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;return x;&nbsp;&nbsp; &nbsp;}}bool Stack::isEmpty() {&nbsp;&nbsp; &nbsp;return (top &lt; 0);}int main() {&nbsp;&nbsp; &nbsp;cout &lt;&lt; "********************************************************" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smartdevelop.ir" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "********************************************************" &lt;&lt; endl;&nbsp;&nbsp; &nbsp;struct Stack s;&nbsp;&nbsp; &nbsp;int shomare;&nbsp;&nbsp; &nbsp;for (int i = 0;i &lt;= 10;i++) {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; "adad somare " &lt;&lt; i &lt;&lt; " ra vared konid :";&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cin &gt;&gt; shomare;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;s.push(shomare);&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;for (int i = 0;i &lt;= 10;i++) {&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;cout &lt;&lt; s.pop() &lt;&lt; " Popped from stack\n";&nbsp;&nbsp; &nbsp;}&nbsp;&nbsp; &nbsp;getch();&nbsp;&nbsp; &nbsp;return 0;}
&nbsp;
&nbsp;
از کتابخانه های&nbsp; iostream&nbsp; و&nbsp; conio.h&nbsp;  استفاه کنید
سورس : دانلود
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;]]></description>

<pubDate>Sat, 27 Jun 2026 20:14:07 +0330</pubDate>
</item>


</channel>
</rss>

