473,327 Members | 2,081 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,327 software developers and data experts.

c# Favorites

I have a post in fourms.micorsoft.com but no one is responding, and i
had good luck in google groups befor so i decieded on posting my
question here also.
Im trying to add a favorites function to my web browser. the problem
when i hit the add to favorites button it does nothing.

but on form close it creates the favorites.xml file. so i know the
problem is somewhere in the add to favorites function.

hears my code:
Expand|Select|Wrap|Line Numbers
  1. using System;
  2.  
  3. using System.Collections.Generic;
  4.  
  5. using System.ComponentModel;
  6.  
  7. using System.Data;
  8.  
  9. using System.Drawing;
  10.  
  11. using System.Linq;
  12.  
  13. using System.Text;
  14.  
  15. using System.Windows.Forms;
  16.  
  17. using System.Xml;
  18.  
  19. using System.Xml.Serialization;
  20.  
  21. using System.Resources;
  22.  
  23. using Microsoft.Win32;
  24.  
  25. using System.IO;
  26.  
  27.  
  28. namespace Webbrowser
  29.  
  30. {
  31.  
  32. public partial class Form1 : Form
  33.  
  34. {
  35.  
  36. private string theURL = String.Empty;
  37.  
  38. private Favorite theFavorites = new Favorite();
  39.  
  40. public Form1()
  41.  
  42. {
  43.  
  44. InitializeComponent();
  45.  
  46. }
  47.  
  48. private void Form1_load(object sender, EventArgs e)
  49.  
  50. {
  51.  
  52. this.theFavorites = Favorite.DoLoadFavorites();
  53.  
  54. this.favoriteToolStripMenuItem.DropDown.Items.Clear(); //clear the
  55. items that already exist if any
  56.  
  57. foreach (Favorite currentItem in
  58. this.theFavorites.TheFavoritesCollection)
  59.  
  60. {
  61.  
  62. this.favoriteToolStripMenuItem.DropDown.Items.Add(currentItem.TheDisplayName);
  63.  
  64. this.favoriteToolStripMenuItem.DropDown.Items[this.favoriteToolStripMenuItem.DropDown.Items.Count
  65. - 1].ToolTipText = currentItem.TheURL;
  66.  
  67. }
  68.  
  69. }
  70.  
  71. public class Favorite
  72.  
  73. {
  74.  
  75. //****************** String Declaration **********************//
  76.  
  77. private string theDisplayName = string.Empty;
  78.  
  79. private string theURL = String.Empty;
  80.  
  81. private List<FavoritetheFavorites = new List<Favorite>();
  82.  
  83. //****************** String Definition ***********************//
  84.  
  85. public List<FavoriteTheFavoritesCollection
  86.  
  87. {
  88.  
  89. get
  90.  
  91. {
  92.  
  93. return this.theFavorites;
  94.  
  95. }
  96.  
  97. }
  98.  
  99. public string TheDisplayName
  100.  
  101. {
  102.  
  103. get
  104.  
  105. {
  106.  
  107. return theDisplayName;
  108.  
  109. }
  110.  
  111. set
  112.  
  113. {
  114.  
  115. theDisplayName = value;
  116.  
  117. }
  118.  
  119. }
  120.  
  121. public string TheURL
  122.  
  123. {
  124.  
  125. get
  126.  
  127. {
  128.  
  129. return theURL;
  130.  
  131. }
  132.  
  133. set
  134.  
  135. {
  136.  
  137. theURL = value;
  138.  
  139. }
  140.  
  141. }
  142.  
  143. public Favorite() { }
  144.  
  145. public Favorite(string displayName, string url)
  146.  
  147. {
  148.  
  149. theDisplayName = displayName;
  150.  
  151. theURL = url;
  152.  
  153. }
  154.  
  155. public int CompareTo(Favorite fav)
  156.  
  157. {
  158.  
  159. return TheDisplayName.CompareTo(TheDisplayName);
  160.  
  161. }
  162.  
  163. //**************Favourite Add/Load/Save Functions ****************//
  164.  
  165. public void DoAddFavorite(Favorite theFavToAdd)
  166.  
  167. {
  168.  
  169. this.theFavorites.Add(theFavToAdd);
  170.  
  171. }
  172.  
  173. public static Favorite DoLoadFavorites()
  174.  
  175. {
  176.  
  177. if (System.IO.File.Exists(System.Windows.Forms.Application.StartupPath
  178. + "\\favorites.xml"))
  179.  
  180. {
  181.  
  182. //deserialize Type[] theTypes = new Type[1];
  183.  
  184. Type[] theTypes = new Type[1];
  185.  
  186. theTypes[0] = typeof(List<Favorite>);
  187.  
  188. XmlSerializer theSerializer = new XmlSerializer(typeof(Favorite),
  189. theTypes);
  190.  
  191. System.IO.StreamReader theReader = new
  192. System.IO.StreamReader(System.Windows.Forms.Application.StartupPath +
  193. "\\favorites.xml");
  194.  
  195. Favorite theFavorites =
  196. (Favorite)theSerializer.Deserialize(theReader);
  197.  
  198. theReader.Close();
  199.  
  200. return theFavorites;
  201.  
  202. }
  203.  
  204. else
  205.  
  206. {
  207.  
  208. return new Favorite();
  209.  
  210. }
  211.  
  212. }
  213.  
  214. public void DoSaveFavorites()
  215.  
  216. {
  217.  
  218. //serialize Type[] theTypes = new Type[1];
  219.  
  220. Type[] theTypes = new Type[1];
  221.  
  222. theTypes[0] = typeof(List<Favorite>);
  223.  
  224. XmlSerializer theSerializer = new XmlSerializer(typeof(Favorite),
  225. theTypes);
  226.  
  227. System.IO.StreamWriter theWriter = new
  228. System.IO.StreamWriter(System.Windows.Forms.Application.StartupPath +
  229. "\\favorites.xml");
  230.  
  231. theSerializer.Serialize(theWriter, this);
  232.  
  233. theWriter.Close();
  234.  
  235. }
  236.  
  237. }
  238.  
  239. private void webBrowser1_DocumentTitleChanged(object sender, EventArgs
  240. e)
  241.  
  242. {
  243.  
  244. }
  245.  
  246. private void button1_Click(object sender, EventArgs e)
  247.  
  248. {
  249.  
  250. webBrowser1.Navigate(textBox1.Text);
  251.  
  252. }
  253.  
  254. private void button2_Click(object sender, EventArgs e)
  255.  
  256. {
  257.  
  258. webBrowser1.GoBack();
  259.  
  260. }
  261.  
  262. private void button3_Click(object sender, EventArgs e)
  263.  
  264. {
  265.  
  266. webBrowser1.GoForward();
  267.  
  268. }
  269.  
  270. private void button4_Click(object sender, EventArgs e)
  271.  
  272. {
  273.  
  274. webBrowser1.Refresh();
  275.  
  276. }
  277.  
  278. private void printToolStripMenuItem_Click(object sender, EventArgs e)
  279.  
  280. {
  281.  
  282. webBrowser1.ShowPrintDialog();
  283.  
  284. }
  285.  
  286. private void printPreviewToolStripMenuItem_Click(object sender,
  287. EventArgs e)
  288.  
  289. {
  290.  
  291. webBrowser1.ShowPrintPreviewDialog();
  292.  
  293. }
  294.  
  295. private void refreshToolStripMenuItem_Click(object sender, EventArgs
  296. e)
  297.  
  298. {
  299.  
  300. webBrowser1.Refresh();
  301.  
  302. }
  303.  
  304. private void button5_Click(object sender, EventArgs e)
  305.  
  306. {
  307.  
  308. webBrowser1.Stop();
  309.  
  310. }
  311.  
  312. private void toolStripStatusLabel3_Click(object sender, EventArgs e)
  313.  
  314. {
  315.  
  316. toolStripStatusLabel3.Text = webBrowser1.StatusText;
  317.  
  318. }
  319.  
  320. private void webBrowser1_ProgressChanged(object sender,
  321. WebBrowserProgressChangedEventArgs e)
  322.  
  323. {
  324.  
  325. toolStripProgressBar1.Value = (int)(((double)e.CurrentProgress /
  326. e.MaximumProgress) * 100);
  327.  
  328. toolStripStatusLabel3.Text = webBrowser1.StatusText;
  329.  
  330. }
  331.  
  332. private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
  333.  
  334. {
  335.  
  336. MessageBox.Show(
  337.  
  338. "Product Version : " + ProductVersion + "\n Copy Right 2008 DSAQ.net",
  339. "About");
  340.  
  341. }
  342.  
  343. private void theDSAQSiteToolStripMenuItem_Click(object sender,
  344. EventArgs e)
  345.  
  346. {
  347.  
  348. webBrowser1.Navigate("http://dsaq.net");
  349.  
  350. }
  351.  
  352. private void googleToolStripMenuItem_Click(object sender, EventArgs e)
  353.  
  354. {
  355.  
  356. webBrowser1.Navigate("http://google.com");
  357.  
  358. }
  359.  
  360. private void saveAsToolStripMenuItem_Click(object sender, EventArgs e)
  361.  
  362. {
  363.  
  364. webBrowser1.ShowSaveAsDialog();
  365.  
  366. }
  367.  
  368. private void properitesToolStripMenuItem_Click(object sender,
  369. EventArgs e)
  370.  
  371. {
  372.  
  373. webBrowser1.ShowPropertiesDialog();
  374.  
  375. }
  376.  
  377. private void exitToolStripMenuItem_Click(object sender, EventArgs e)
  378.  
  379. {
  380.  
  381. Form1.ActiveForm.Close();
  382.  
  383. }
  384.  
  385. private void openToolStripMenuItem_Click(object sender, EventArgs e)
  386.  
  387. {
  388.  
  389. string url;
  390.  
  391. openFileDialog1.ShowDialog();
  392.  
  393. url = openFileDialog1.FileName;
  394.  
  395. webBrowser1.Navigate(url);
  396.  
  397. }
  398.  
  399. private void webBrowser1_DocumentCompleted(object sender,
  400. WebBrowserDocumentCompletedEventArgs e)
  401.  
  402. {
  403.  
  404. string title;
  405.  
  406. textBox1.Text = webBrowser1.Url.ToString();
  407.  
  408. title = openFileDialog1.SafeFileName.ToString();
  409.  
  410. switch (title)
  411.  
  412. {
  413.  
  414. case "openFileDialog1":
  415.  
  416. Form1.ActiveForm.Text = webBrowser1.DocumentTitle + " - DSAQ Web
  417. Browser".ToString();
  418.  
  419. break;
  420.  
  421. default:
  422.  
  423. Form1.ActiveForm.Text = openFileDialog1.SafeFileName + " - DSAQ Web
  424. Browser".ToString();
  425.  
  426. break;
  427.  
  428. }
  429.  
  430. }
  431.  
  432. private void optionsToolStripMenuItem_Click(object sender, EventArgs
  433. e)
  434.  
  435. {
  436.  
  437. }
  438.  
  439. private void Form1_FormClosing(object sender, FormClosingEventArgs e)
  440.  
  441. {
  442.  
  443. this.theFavorites.DoSaveFavorites();
  444.  
  445. }
  446.  
  447. private void addToFavoritesToolStripMenuItem_Click(object sender,
  448. EventArgs e)
  449.  
  450. {
  451.  
  452. Favorite theFavToAdd = new
  453. Favorite(webBrowser1.DocumentTitle.ToString(),
  454. webBrowser1.Url.ToString());
  455.  
  456. theFavToAdd.DoAddFavorite(theFavToAdd);
  457.  
  458. this.favoriteToolStripMenuItem.DropDown.Items.Add(theFavToAdd.ToString());
  459.  
  460. this.favoriteToolStripMenuItem.DropDown.Items[this.favoriteToolStripMenuItem.DropDown.Items.Count
  461. - 1].ToolTipText = theFavToAdd.TheURL.ToString();
  462.  
  463. }
  464.  
  465. private void favoriteToolStripMenuItem_DropDownItemClicked(object
  466. sender, ToolStripItemClickedEventArgs e)
  467.  
  468. {
  469.  
  470. webBrowser1.Navigate(theURL);
  471.  
  472. }
  473.  
  474. }
  475.  
  476. }
  477.  
  478.  
Aug 1 '08 #1
5 3733
On Aug 1, 12:20*pm, andrewq2 <andrewque...@gmail.comwrote:
I have a post in fourms.micorsoft.com but no one is responding, and i
had good luck in google groups befor so i decieded on posting my
question here also.
Im trying to add a favorites function to my web browser. the problem
when i hit the add to favorites button it does nothing.

but on form close it creates the favorites.xml file. so i know the
problem is somewhere in the add to favorites function.

hears my code:
[code]
using System;
I would step through the code line by line--don't forget to jump over
functions--using the Debugger of VS. It's probably something simple.
What language are you using? This looks like ADO.NET to me.

RL
Aug 1 '08 #2
On Aug 1, 3:42*pm, raylopez99 <raylope...@yahoo.comwrote:
On Aug 1, 12:20*pm, andrewq2 <andrewque...@gmail.comwrote:
I have a post in fourms.micorsoft.com but no one is responding, and i
had good luck in google groups befor so i decieded on posting my
question here also.
Im trying to add a favorites function to my web browser. the problem
when i hit the add to favorites button it does nothing.
but on form close it creates the favorites.xml file. so i know the
problem is somewhere in the add to favorites function.
hears my code:
[code]
using System;

I would step through the code line by line--don't forget to jump over
functions--using the Debugger of VS. *It's probably something simple.
What language are you using? *This looks like ADO.NET to me.

RL
im using c# and i finaly got it to work almost execpt for the saving
of the xml file it creates the file with the right format but with no
data.
for ex.
<?xml version="1.0" encoding="utf-8"?>
<Favorite xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<TheFavoritesCollection />
<TheDisplayName />
<TheURL />
</Favorite>
this it all creates it dosent save the url's or title's
this is my updated code.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml;
using System.Xml.Serialization;
using System.Resources;
using Microsoft.Win32;
using System.IO;

namespace Webbrowser
{
public partial class Form1 : Form
{
private string theURL = String.Empty;
private Favorite theFavorites = new Favorite();
public Form1()
{
InitializeComponent();
}
private void Form1_load(object sender, EventArgs e)
{
this.theFavorites = Favorite.DoLoadFavorites();
this.favoriteToolStripMenuItem.DropDown.Items.Clea r(); //
clear the items that already exist if any
foreach (Favorite currentItem in
this.theFavorites.TheFavoritesCollection)
{

this.favoriteToolStripMenuItem.DropDown.Items.Add( currentItem.TheDisplayName);

this.favoriteToolStripMenuItem.DropDown.Items[this.favoriteToolStripMenuItem.DropDown.Items.Coun t
- 1].ToolTipText = currentItem.TheURL;
}

}
public class Favorite
{
//****************** String Declaration
**********************//
private string theDisplayName = string.Empty;
private string theURL = String.Empty;
private List<FavoritetheFavorites = new
List<Favorite>();

//****************** String Definition
***********************//
public List<FavoriteTheFavoritesCollection
{
get
{
return this.theFavorites;
}
}

public string TheDisplayName
{
get
{
return theDisplayName;
}
set
{
theDisplayName = value;
}
}

public string TheURL
{
get
{
return theURL;
}
set
{
theURL = value;
}
}

public Favorite() { }

public Favorite(string displayName, string url)
{
theDisplayName = displayName;
theURL = url;
}

public int CompareTo(Favorite fav)
{
return TheDisplayName.CompareTo(TheDisplayName);
}
//**************Favourite Add/Load/Save Functions
****************//
public void DoAddFavorite(Favorite theFavToAdd)
{
this.theFavorites.Add(theFavToAdd);
}
public static Favorite DoLoadFavorites()
{
if
(System.IO.File.Exists(System.Windows.Forms.Applic ation.StartupPath +
"\\favorites.xml"))
{
//deserialize Type[] theTypes = new Type[1];
Type[] theTypes = new Type[1];
theTypes[0] = typeof(List<Favorite>);
XmlSerializer theSerializer = new
XmlSerializer(typeof(Favorite), theTypes);
System.IO.StreamReader theReader = new
System.IO.StreamReader(System.Windows.Forms.Applic ation.StartupPath +
"\\favorites.xml");
Favorite theFavorites =
(Favorite)theSerializer.Deserialize(theReader);
theReader.Close();
return theFavorites;
}
else
{
return new Favorite();
}
}
public void DoSaveFavorites()
{
//serialize Type[] theTypes = new Type[1];
Type[] theTypes = new Type[1];
theTypes[0] = typeof(List<Favorite>);
XmlSerializer theSerializer = new
XmlSerializer(typeof(Favorite), theTypes);
System.IO.StreamWriter theWriter = new
System.IO.StreamWriter(System.Windows.Forms.Applic ation.StartupPath +
"\\favorites.xml");

theSerializer.Serialize(theWriter, this);
theWriter.Close();
}
}
private void webBrowser1_DocumentTitleChanged(object sender,
EventArgs e)
{

}
private void button1_Click(object sender, EventArgs e)
{
webBrowser1.Navigate(textBox1.Text);

}

private void button2_Click(object sender, EventArgs e)
{
webBrowser1.GoBack();

}

private void button3_Click(object sender, EventArgs e)
{
webBrowser1.GoForward();

}

private void button4_Click(object sender, EventArgs e)
{
webBrowser1.Refresh();
}

private void printToolStripMenuItem_Click(object sender,
EventArgs e)
{
webBrowser1.ShowPrintDialog();
}

private void printPreviewToolStripMenuItem_Click(object
sender, EventArgs e)
{
webBrowser1.ShowPrintPreviewDialog();
}

private void refreshToolStripMenuItem_Click(object sender,
EventArgs e)
{
webBrowser1.Refresh();
}

private void button5_Click(object sender, EventArgs e)
{
webBrowser1.Stop();
}
private void toolStripStatusLabel3_Click(object sender,
EventArgs e)
{
toolStripStatusLabel3.Text = webBrowser1.StatusText;
}
private void webBrowser1_ProgressChanged(object sender,
WebBrowserProgressChangedEventArgs e)
{
toolStripProgressBar1.Value = (int)
(((double)e.CurrentProgress / e.MaximumProgress) * 100);
//toolStripStatusLabel3.Text = webBrowser1.StatusText;

}

private void aboutToolStripMenuItem_Click(object sender,
EventArgs e)
{
MessageBox.Show(
"Product Version : " + ProductVersion + "\n Copy Right
2008 DSAQ.net", "About");
}

private void theDSAQSiteToolStripMenuItem_Click(object sender,
EventArgs e)
{
webBrowser1.Navigate("http://dsaq.net");
}

private void googleToolStripMenuItem_Click(object sender,
EventArgs e)
{
webBrowser1.Navigate("http://google.com");
}

private void saveAsToolStripMenuItem_Click(object sender,
EventArgs e)
{
webBrowser1.ShowSaveAsDialog();
}

private void properitesToolStripMenuItem_Click(object sender,
EventArgs e)
{
webBrowser1.ShowPropertiesDialog();
}

private void exitToolStripMenuItem_Click(object sender,
EventArgs e)
{
Form1.ActiveForm.Close();
}

private void openToolStripMenuItem_Click(object sender,
EventArgs e)
{
string url;
openFileDialog1.ShowDialog();
url = openFileDialog1.FileName;
webBrowser1.Navigate(url);
}

private void webBrowser1_DocumentCompleted(object sender,
WebBrowserDocumentCompletedEventArgs e)
{
string title;
textBox1.Text = webBrowser1.Url.ToString();
title = openFileDialog1.SafeFileName.ToString();
switch (title)
{
case "openFileDialog1":
Form1.ActiveForm.Text = webBrowser1.DocumentTitle
+ " - DSAQ Web Browser".ToString();
break;
default:
Form1.ActiveForm.Text =
openFileDialog1.SafeFileName + " - DSAQ Web Browser".ToString();
break;
}
}

private void optionsToolStripMenuItem_Click(object sender,
EventArgs e)
{
}
private void Form1_FormClosing(object sender,
FormClosingEventArgs e)
{
this.theFavorites.DoSaveFavorites();
}

private void addToFavoritesToolStripMenuItem_Click(object
sender, EventArgs e)
{
string text = webBrowser1.DocumentTitle.ToString();
string url = webBrowser1.Url.ToString();
Favorite theFavToAdd = new Favorite(text, url);

theFavToAdd.DoAddFavorite(theFavToAdd);


this.favoriteToolStripMenuItem.DropDown.Items.Add( theFavToAdd.TheDisplayName.ToString());


this.favoriteToolStripMenuItem.DropDown.Items[this.favoriteToolStripMenuItem.DropDown.Items.Coun t
- 1].ToolTipText = theFavToAdd.TheURL.ToString();
}
private void
favoriteToolStripMenuItem_DropDownItemClicked(obje ct sender,
ToolStripItemClickedEventArgs e)
{

webBrowser1.Navigate(e.ClickedItem.ToolTipText.ToS tring());
}
private void webBrowser1_StatusTextChanged(object sender,
EventArgs e)
{
toolStripStatusLabel3.Text = webBrowser1.StatusText;
}
}
}
Aug 1 '08 #3
I would step through the code line by line--don't forget to jump over
functions--using the Debugger of VS. It's probably something simple.
What language are you using? This looks like ADO.NET to me.
ADO isn't a language, and by the using statement for LINQ, it has to be C#
v3
>
RL
Aug 2 '08 #4
On Aug 2, 3:37*pm, "Ben Voigt [C++ MVP]" <r...@nospam.nospamwrote:
I would step through the code line by line--don't forget to jump over
functions--using the Debugger of VS. *It's probably something simple.
What language are you using? *This looks like ADO.NET to me.

ADO isn't a language, and by the using statement for LINQ, it has to be C#
v3
Right you are. That LINQ using statement trips me up every time I
compile a new class, since I'm using C# 3.0 (no pun intended) but from
Visual Studio 2005, and VS 2005 doesn't recognize LINQ. I'll have to
upgrade to the Professional version one of these days...eBay probably
has a Academic version for a hundred dollars or so.

RL

Aug 3 '08 #5
raylopez99 <ra********@yahoo.comwrote:
On Aug 2, 3:37*pm, "Ben Voigt [C++ MVP]" <r...@nospam.nospamwrote:
I would step through the code line by line--don't forget to jump over
functions--using the Debugger of VS. *It's probably something simple.
What language are you using? *This looks like ADO.NET to me.
ADO isn't a language, and by the using statement for LINQ, it has to beC#
v3
Right you are. That LINQ using statement trips me up every time I
compile a new class, since I'm using C# 3.0 (no pun intended) but from
Visual Studio 2005, and VS 2005 doesn't recognize LINQ. I'll have to
upgrade to the Professional version one of these days...eBay probably
has a Academic version for a hundred dollars or so.
Or just download the free Express edition...

http://microsoft.com/express

--
Jon Skeet - <sk***@pobox.com>
Web site: http://www.pobox.com/~skeet
Blog: http://www.msmvps.com/jon.skeet
C# in Depth: http://csharpindepth.com
Aug 3 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: shank | last post by:
Is there any one "add to favorites" code that will work for IE, NS, AOL, and a host of others? At least some code that will give me an effective "add to favorites" for the highest percentage of...
5
by: JP | last post by:
I have the need to be able to access the IE5+ favorites menu, read the title and URL for each shortcut so I can render the person's favorites list on a web page. The project I'm working on is...
9
by: Dennis Ruppert | last post by:
Greetings This is rather ambitious: I have a split database that contains many different reports. I have a form that the end user launches the reports from. They select the report criteria...
2
by: clintonG | last post by:
I've been hunting around. Does anybody have a URL to Microsoft'sdocumentation for Favorites? -- <%= Clinton Gallagher METROmilwaukee (sm) "A Regional Information Service" NET csgallagher AT...
2
by: Tom McL. | last post by:
I have a new computer which came with sp2 and framework 1.1. I have noticed that my favorites that contain links to visual basic.net subjects that were saved under the earlier version framework...
17
by: ljlevend2 | last post by:
I'm implementing the WebBrowser control in my app and I would like to be able to show the Add to Favorites and Organize Favorites dialogs that are used in Internet Explorer. Is this possible? ...
5
by: draken | last post by:
Basically, what I am looking to do is to sync up browsers favorites via a website without a download. I thought of javascript when first doing this, as I know, mozilla would allow me to pull them...
2
by: john_c | last post by:
If I want to upload a user's (with permissiom) web browser favorites, will they have to configure their favorites folder to allow the ASP.NET user to access that folder? What happens for Mac...
6
by: Killer42 | last post by:
I have actually asked a pretty similar question here in the past, without a great deal of success. But I've decided to try a different tack. So, what are the ways in which a network admin could...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.